Skip to content

Commit b3cc284

Browse files
committed
Keep consistent versions between travis.yml and setup.py
1 parent e75c94e commit b3cc284

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Diff for: .travis.yml

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
language: python
22
matrix:
33
include:
4-
# Python 2.7
5-
- env: TOXENV=py27
6-
python: 2.7
7-
# Python 3.5
8-
- env: TOXENV=py35
9-
python: 3.5
104
# Python 3.6
115
- env: TOXENV=py36
126
python: 3.6
137
# Python 3.7
148
- env: TOXENV=py37
159
python: 3.7
1610
dist: xenial
11+
# Python 3.8
12+
- env: TOXENV=py38
13+
python: 3.8
14+
dist: xenial
1715
# SQLAlchemy 1.1
1816
- env: TOXENV=py37-sql11
1917
python: 3.7
@@ -26,6 +24,10 @@ matrix:
2624
- env: TOXENV=py37-sql13
2725
python: 3.7
2826
dist: xenial
27+
# SQLAlchemy 1.4
28+
- env: TOXENV=py37-sql14
29+
python: 3.7
30+
dist: xenial
2931
# Pre-commit
3032
- env: TOXENV=pre-commit
3133
python: 3.7

Diff for: setup.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"graphene>=3.0b5",
1717
"promise>=2.3",
1818
# Tests fail with 1.0.19
19-
"SQLAlchemy>=1.2,<2.0",
19+
"SQLAlchemy>=1.1,<2.0",
2020
]
2121

2222
tests_require = [
@@ -39,12 +39,10 @@
3939
"Development Status :: 3 - Alpha",
4040
"Intended Audience :: Developers",
4141
"Topic :: Software Development :: Libraries",
42-
"Programming Language :: Python :: 2",
43-
"Programming Language :: Python :: 2.7",
4442
"Programming Language :: Python :: 3",
45-
"Programming Language :: Python :: 3.5",
4643
"Programming Language :: Python :: 3.6",
4744
"Programming Language :: Python :: 3.7",
45+
"Programming Language :: Python :: 3.8",
4846
"Programming Language :: Python :: Implementation :: PyPy",
4947
],
5048
keywords="api graphql protocol rest relay graphene",

0 commit comments

Comments
 (0)