aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Ganssle <pganssle@users.noreply.github.com>2019-02-22 15:56:14 -0500
committerGitHub <noreply@github.com>2019-02-22 15:56:14 -0500
commit6575418283ec605f6bca82c525f6680d897ce282 (patch)
treebdc5d3081d333c3c22228d824fab30612dbc2e6b
parent23e4f21abb1ea4d4672af2626ddd396e3fade3ed (diff)
parentfc61c27c1a96b371d9ffbafc2903aa045b4fab4e (diff)
downloadexternal_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.cfg6
-rw-r--r--setup.cfg9
-rwxr-xr-xsetup.py1
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]
diff --git a/setup.cfg b/setup.cfg
index f0932e1c..7a0fac15 100644
--- a/setup.cfg
+++ b/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
diff --git a/setup.py b/setup.py
index 8ec7ce06..78d7018c 100755
--- a/setup.py
+++ b/setup.py
@@ -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"