diff options
author | Paul Ganssle <pganssle@users.noreply.github.com> | 2019-02-22 15:56:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-22 15:56:14 -0500 |
commit | 6575418283ec605f6bca82c525f6680d897ce282 (patch) | |
tree | bdc5d3081d333c3c22228d824fab30612dbc2e6b | |
parent | 23e4f21abb1ea4d4672af2626ddd396e3fade3ed (diff) | |
parent | fc61c27c1a96b371d9ffbafc2903aa045b4fab4e (diff) | |
download | external_python_setuptools-6575418283ec605f6bca82c525f6680d897ce282.tar.gz external_python_setuptools-6575418283ec605f6bca82c525f6680d897ce282.tar.bz2 external_python_setuptools-6575418283ec605f6bca82c525f6680d897ce282.zip |
Merge pull request #1687 from pypa/feature/version-in-cfg
Move version to declarative config
-rw-r--r-- | .bumpversion.cfg | 6 | ||||
-rw-r--r-- | setup.cfg | 9 | ||||
-rwxr-xr-x | setup.py | 1 |
3 files changed, 7 insertions, 9 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg new file mode 100644 index 00000000..f4e8b40b --- /dev/null +++ b/.bumpversion.cfg @@ -0,0 +1,6 @@ +[bumpversion] +current_version = 40.8.0 +commit = True +tag = True + +[bumpversion:file:setup.cfg] @@ -1,8 +1,3 @@ -[bumpversion] -current_version = 40.8.0 -commit = True -tag = True - [egg_info] tag_build = .post tag_date = 1 @@ -24,6 +19,4 @@ universal = 1 [metadata] license_file = LICENSE - -[bumpversion:file:setup.py] - +version = 40.8.0 @@ -89,7 +89,6 @@ def pypi_link(pkg_filename): setup_params = dict( name="setuptools", - version="40.8.0", description=( "Easily download, build, install, upgrade, and uninstall " "Python packages" |