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

Commit f6e6c67

Browse files
committed
Release 3.4.0
1 parent e1d5c7f commit f6e6c67

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ and [extension modules](http://docs.python.org/3/howto/cporting.html).
7979

8080
# Change Log
8181

82-
# 3.4.0 (under development)
82+
# 3.4.0
8383
* Fix a dict comprehension failure with the pylint checker
8484
(patch by [Jeroen Oldenburger](https://github.com/jeroenoldenburger))
8585
* Usual override updates

RELEASING.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
0. Make sure all changes are live and that Travis is green
22
0. Update README.md with release notes
33
0. Update setup.py for the new version number
4-
0. `pip install -U twine wheel`
5-
0. `python setup.py sdist`
6-
0. `python setup.py bdist_wheel`
7-
0. For each file in `dist/`: `gpg2 --detach-sign -a <filename>`
4+
0. `python3 -m pip install --upgrade setuptools twine wheel`
5+
0. `python3 setup.py sdist`
6+
0. `python3 setup.py bdist_wheel`
87
0. `twine upload dist/*`
98
0. Commit everything for the release
109
0. `git tag -a vN.N.N`

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
tests_require = [dep.strip() for dep in file.readlines()]
1414

1515
setup(name='caniusepython3',
16-
version='3.3.0',
16+
version='3.4.0',
1717
description='Determine what projects are blocking you from porting to Python 3',
1818
long_description=long_description,
1919
author='Brett Cannon',

0 commit comments

Comments
 (0)