Skip to content

Commit

Permalink
prevent installation on py2 (#1294)
Browse files Browse the repository at this point in the history
  • Loading branch information
oberstet committed Jan 14, 2020
1 parent 1a2d833 commit c022322
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion autobahn/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
#
###############################################################################

__version__ = '20.1.1'
__version__ = '20.1.2'
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
Changelog
=========

20.1.2
------

* fix: add `python_requires>=3.5` to prevent installation on python 2 (#1293)

20.1.1
------

Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,8 @@ def run_tests(self):

zip_safe=False,

python_requires='>=3.5',

# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=["License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit c022322

Please sign in to comment.