Skip to content

Commit 2568f21

Browse files
authored
Merge pull request #114 from rethinkdb/add-python-3-8
Cleanup and add python 3.8
2 parents d512fbc + ccda51a commit 2568f21

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@ python:
88
- "3.5"
99
- "3.6"
1010
- "3.7"
11+
- "3.7-dev"
12+
- "3.8-dev"
1113

1214
allow_failure:
13-
- python: "3.7"
15+
- python: "3.8-dev"
1416

1517
install:
1618
- pip install -r requirements.txt
17-
- pip install -r requirements-dev.txt
1819

1920
before_script:
2021
- make prepare
@@ -30,7 +31,7 @@ deploy:
3031
provider: script
3132
script: make upload-pypi
3233
on:
33-
python: 3.6
34+
python: 3.7
3435
tags: true
3536

3637
notifications:

requirements.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
async-generator==1.10; python_version>="3.6"
12
codacy-coverage==1.3.11
23
mock==2.0.0
34
pytest-cov==2.6.1
5+
pytest-tornasync; python_version >= '3.5'
6+
pytest-trio==0.5.2; python_version>="3.6"
47
pytest==4.4.1
58
six==1.12.0
9+
tornado>=5.0
610
trio==0.11.0; python_version>="3.6"
7-
pytest-trio==0.5.2; python_version>="3.6"
8-
async-generator==1.10; python_version>="3.6"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@
6969
'Programming Language :: Python :: 2',
7070
'Programming Language :: Python :: 2.7',
7171
'Programming Language :: Python :: 3',
72-
'Programming Language :: Python :: 3.4',
7372
'Programming Language :: Python :: 3.5',
7473
'Programming Language :: Python :: 3.6',
7574
'Programming Language :: Python :: 3.7',
75+
'Programming Language :: Python :: 3.8',
7676
],
7777
packages=[
7878
'rethinkdb',

0 commit comments

Comments
 (0)