This repository has been archived by the owner on Jan 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9791b59
commit 70617bc
Showing
4 changed files
with
20 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
0. Make sure all changes are live and that Travis is green | ||
0. Delete all packaging-related directories(including `dist/`) | ||
0. Verify there are no stale overrides | ||
0. Update README.md with release notes | ||
0. Update setup.py for the new version number | ||
0. `python3 -m pip install --upgrade setuptools twine wheel` | ||
0. `python3 setup.py sdist` | ||
0. `python3 setup.py bdist_wheel` | ||
0. `python3 -m twine upload dist/*` | ||
0. Commit everything for the release | ||
0. `git push` | ||
0. Create a [release on GitHub](https://github.com/brettcannon/caniusepython3/releases) | ||
1. Make sure all changes are live and that Travis is green | ||
1. Delete all packaging-related directories(including `dist/`) | ||
1. Verify there are no stale overrides | ||
1. Update `README.md` with release notes | ||
1. Update `setup.py` with the new version number | ||
1. `python3 -m pip install --upgrade setuptools twine wheel` | ||
1. `python3 setup.py sdist` | ||
1. `python3 setup.py bdist_wheel` | ||
1. `python3 -m twine check dist/*` | ||
1. `python3 -m twine upload dist/*` | ||
1. Commit everything from the release | ||
1. `git push` | ||
1. Create a [release on GitHub](https://github.com/brettcannon/caniusepython3/releases) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
mock | ||
pylint | ||
unittest2 | ||
unittest2;python_version=="2.7" | ||
tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,15 +13,16 @@ | |
tests_require = [dep.strip() for dep in file.readlines()] | ||
|
||
setup(name='caniusepython3', | ||
version='7.1.0', | ||
version='7.2.0', | ||
description='Determine what projects are blocking you from porting to Python 3', | ||
long_description=long_description, | ||
long_description_content_type='text/x-rst', | ||
author='Brett Cannon', | ||
author_email='[email protected]', | ||
url='https://github.com/brettcannon/caniusepython3', | ||
packages=['caniusepython3', 'caniusepython3.test'], | ||
include_package_data=True, | ||
requires_python='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', | ||
requires_python='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*', | ||
install_requires=['distlib', 'setuptools', 'packaging', # Input flexibility | ||
'argparse', 'backports.functools_lru_cache', | ||
'futures ; python_version=="2.7"', | ||
|
@@ -39,6 +40,7 @@ | |
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
], | ||
entry_points={ | ||
'console_scripts': [ | ||
|