Skip to content

Commit 00c0027

Browse files
authored
Add python 3.7 to the Travis testing matrix (kensho-technologies#148)
* Add Python 3.7 target for TravisCI. * No need for xenial target when everything is xenial. * Advertise py3.7 compatibility in classifiers. * Remove sudo=true option.
1 parent 2d903d2 commit 00c0027

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ matrix:
2828
python: "3.6"
2929
script:
3030
- py.test --cov=graphql_compiler graphql_compiler/tests
31+
- name: "Python 3.7 unit tests"
32+
python: "3.7"
33+
script:
34+
- py.test --cov=graphql_compiler graphql_compiler/tests
3135
after_success:
3236
- docker-compose down
3337
- coveralls

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ def find_long_description():
7575
'Programming Language :: Python :: 3',
7676
'Programming Language :: Python :: 3.5',
7777
'Programming Language :: Python :: 3.6',
78+
'Programming Language :: Python :: 3.7',
7879
],
7980
keywords='graphql database compiler orientdb',
8081
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*',

0 commit comments

Comments
 (0)