Skip to content
This repository was archived by the owner on Jan 2, 2021. It is now read-only.

Commit 70617bc

Browse files
committed
Release 7.2.0
1 parent 9791b59 commit 70617bc

File tree

4 files changed

+20
-17
lines changed

4 files changed

+20
-17
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,15 @@ You can add the following hook in your `.pre-commit-config.yaml` file.
103103
]
104104
stages: [commit] # Change it to `manual`, if `caniusepython3` takes too long between commits, so as to only run them manually in build jobs.
105105
```
106-
106+
107107
If you are running manually somewhere, we can run the following command:
108108
```
109109
pre-commit run --hook-stage manual caniusepython3 --files requirements.txt
110110
```
111111

112112
# Change Log
113113

114-
# 7.2.0 (in development)
114+
# 7.2.0
115115
* Add an `--index`/`-i` flag to specify an index URL (thanks [macleodbroad-wf](https://github.com/macleodbroad-wf))
116116
* Add support for [pre-commit](https://pre-commit.com/) (thanks [Milind Shakya](https://github.com/milind-shakya-sp))
117117
* Update overrides data (thanks [Andriy Yablonskyy](https://github.com/yablonsky))

RELEASING.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
0. Make sure all changes are live and that Travis is green
2-
0. Delete all packaging-related directories(including `dist/`)
3-
0. Verify there are no stale overrides
4-
0. Update README.md with release notes
5-
0. Update setup.py for the new version number
6-
0. `python3 -m pip install --upgrade setuptools twine wheel`
7-
0. `python3 setup.py sdist`
8-
0. `python3 setup.py bdist_wheel`
9-
0. `python3 -m twine upload dist/*`
10-
0. Commit everything for the release
11-
0. `git push`
12-
0. Create a [release on GitHub](https://github.com/brettcannon/caniusepython3/releases)
1+
1. Make sure all changes are live and that Travis is green
2+
1. Delete all packaging-related directories(including `dist/`)
3+
1. Verify there are no stale overrides
4+
1. Update `README.md` with release notes
5+
1. Update `setup.py` with the new version number
6+
1. `python3 -m pip install --upgrade setuptools twine wheel`
7+
1. `python3 setup.py sdist`
8+
1. `python3 setup.py bdist_wheel`
9+
1. `python3 -m twine check dist/*`
10+
1. `python3 -m twine upload dist/*`
11+
1. Commit everything from the release
12+
1. `git push`
13+
1. Create a [release on GitHub](https://github.com/brettcannon/caniusepython3/releases)

dev_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
mock
22
pylint
3-
unittest2
3+
unittest2;python_version=="2.7"
44
tox

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,16 @@
1313
tests_require = [dep.strip() for dep in file.readlines()]
1414

1515
setup(name='caniusepython3',
16-
version='7.1.0',
16+
version='7.2.0',
1717
description='Determine what projects are blocking you from porting to Python 3',
1818
long_description=long_description,
19+
long_description_content_type='text/x-rst',
1920
author='Brett Cannon',
2021
author_email='brett@python.org',
2122
url='https://github.com/brettcannon/caniusepython3',
2223
packages=['caniusepython3', 'caniusepython3.test'],
2324
include_package_data=True,
24-
requires_python='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
25+
requires_python='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
2526
install_requires=['distlib', 'setuptools', 'packaging', # Input flexibility
2627
'argparse', 'backports.functools_lru_cache',
2728
'futures ; python_version=="2.7"',
@@ -39,6 +40,7 @@
3940
'Programming Language :: Python :: 3.5',
4041
'Programming Language :: Python :: 3.6',
4142
'Programming Language :: Python :: 3.7',
43+
'Programming Language :: Python :: 3.8',
4244
],
4345
entry_points={
4446
'console_scripts': [

0 commit comments

Comments
 (0)