Skip to content
This repository has been archived by the owner on Jun 25, 2018. It is now read-only.

Commit

Permalink
enable python3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Jul 24, 2017
1 parent d3db8d7 commit 8a27af8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -17,7 +17,7 @@ install:
- export LIBRARY_PATH="$LIBRARY_PATH:$PYTHON_LIB"
- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PYTHON_LIB:$HOME/rust/lib"
- rustc -V
- python -m pip install --upgrade setuptools
- pip install -r requirements-ci.txt
- pip install --upgrade setuptools
- pip install -U -r requirements-dev.txt
script:
- make test
3 changes: 3 additions & 0 deletions CHANGES.rst
Expand Up @@ -7,6 +7,8 @@ CHANGES

* Added weakref support to all exposed python classes #13

* Enable python3.5


0.2.0 (07-23-2017)
^^^^^^^^^^^^^^^^^^
Expand All @@ -15,6 +17,7 @@ CHANGES

* Implement more asyncio APIs


0.1.0
^^^^^

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -2,7 +2,7 @@

.install-deps: requirements-dev.txt requirements-ci.txt
@pip install -U -r requirements-dev.txt
@touch .install-deps
@touch .install-deps

isort:
# isort -rc tokio
Expand Down
1 change: 0 additions & 1 deletion requirements-dev.txt
@@ -1,5 +1,4 @@
-r requirements-ci.txt
setuptools==36.2.2
ipdb==0.10.3
pytest-sugar==0.8.0
ipython==6.1.0
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -44,8 +44,8 @@ def run(self):
tests_require = install_requires + ['pytest', 'pytest-timeout']


if sys.version_info < (3, 6, 0):
raise RuntimeError("tokio requires Python 3.6+")
if sys.version_info < (3, 5, 3):
raise RuntimeError("tokio requires Python 3.5.3+")


def read(f):
Expand Down

0 comments on commit 8a27af8

Please sign in to comment.