aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2019-06-23 21:56:55 +0000
committerMike Crute <mike@crute.us>2019-06-23 21:57:23 +0000
commit1710880bd44fe0e6fa95b7dfe01926941c0df991 (patch)
treeae4c68790e7f66ac5a84597e44740733f7318c02
parentd9e353e7f19da741dcf372246b4d5640cb788488 (diff)
downloadpydora-1710880bd44fe0e6fa95b7dfe01926941c0df991.tar.bz2
pydora-1710880bd44fe0e6fa95b7dfe01926941c0df991.tar.xz
pydora-1710880bd44fe0e6fa95b7dfe01926941c0df991.zip
Remove setup.py validate targetrelease-2.0.0
This target was just a legacy alias for release.
-rw-r--r--.travis.yml2
-rw-r--r--CONTRIBUTING.rst2
-rwxr-xr-xrelease.sh2
-rw-r--r--setup.cfg1
4 files changed, 3 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index d4501bf..38a96b7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,6 +11,6 @@ before_script:
11 # Enable sending Coverage data 11 # Enable sending Coverage data
12 - pip install codecov 12 - pip install codecov
13script: 13script:
14 - python setup.py validate 14 - python setup.py release
15after_success: 15after_success:
16 - codecov 16 - codecov
diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst
index 96161c1..7e95437 100644
--- a/CONTRIBUTING.rst
+++ b/CONTRIBUTING.rst
@@ -16,5 +16,5 @@ your changes. To have the best experience contributing, please:
16All code is reviewed before acceptance and changes may be requested to better 16All code is reviewed before acceptance and changes may be requested to better
17follow the conventions of the existing API. 17follow the conventions of the existing API.
18 18
19The build system runs ``python setup.py validate`` on all supported Python 19The build system runs ``python setup.py release`` on all supported Python
20versions. You can, and should, run this on your pull request before submitting. 20versions. You can, and should, run this on your pull request before submitting.
diff --git a/release.sh b/release.sh
index 63588c5..be6fab6 100755
--- a/release.sh
+++ b/release.sh
@@ -8,7 +8,7 @@ python3 -m venv .release/py3
8.release/py3/bin/pip install -U pip setuptools virtualenv twine 8.release/py3/bin/pip install -U pip setuptools virtualenv twine
9 9
10echo "Building Python 3 Artifact" 10echo "Building Python 3 Artifact"
11.release/py3/bin/python setup.py validate bdist_wheel --python-tag py3 11.release/py3/bin/python setup.py release bdist_wheel --python-tag py3
12 12
13echo "Building Source Dist Artifact" 13echo "Building Source Dist Artifact"
14.release/py3/bin/python setup.py sdist 14.release/py3/bin/python setup.py sdist
diff --git a/setup.cfg b/setup.cfg
index 1c8c41f..b0efa3b 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,5 @@
1[aliases] 1[aliases]
2release = test flake8 2release = test flake8
3validate = release
4 3
5[coverage:run] 4[coverage:run]
6branch = True 5branch = True