Skip to content

Commit 52c718d

Browse files
zsiciarzrichin13
authored andcommitted
Keep consistent versions between travis.yml and setup.py
1 parent 81c4c86 commit 52c718d

File tree

2 files changed

+51
-4
lines changed

2 files changed

+51
-4
lines changed

.travis.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
language: python
2+
matrix:
3+
include:
4+
# Python 3.6
5+
- env: TOXENV=py36
6+
python: 3.6
7+
# Python 3.7
8+
- env: TOXENV=py37
9+
python: 3.7
10+
dist: xenial
11+
# Python 3.8
12+
- env: TOXENV=py38
13+
python: 3.8
14+
dist: xenial
15+
# SQLAlchemy 1.1
16+
- env: TOXENV=py37-sql11
17+
python: 3.7
18+
dist: xenial
19+
# SQLAlchemy 1.2
20+
- env: TOXENV=py37-sql12
21+
python: 3.7
22+
dist: xenial
23+
# SQLAlchemy 1.3
24+
- env: TOXENV=py37-sql13
25+
python: 3.7
26+
dist: xenial
27+
# SQLAlchemy 1.4
28+
- env: TOXENV=py37-sql14
29+
python: 3.7
30+
dist: xenial
31+
# Pre-commit
32+
- env: TOXENV=pre-commit
33+
python: 3.7
34+
dist: xenial
35+
install: pip install .[dev]
36+
script: tox
37+
after_success: coveralls
38+
cache:
39+
directories:
40+
- $HOME/.cache/pip
41+
- $HOME/.cache/pre-commit
42+
deploy:
43+
provider: pypi
44+
user: syrusakbary
45+
on:
46+
tags: true
47+
password:
48+
secure: q0ey31cWljGB30l43aEd1KIPuAHRutzmsd2lBb/2zvD79ReBrzvCdFAkH2xcyo4Volk3aazQQTNUIurnTuvBxmtqja0e+gUaO5LdOcokVdOGyLABXh7qhd2kdvbTDWgSwA4EWneLGXn/SjXSe0f3pCcrwc6WDcLAHxtffMvO9gulpYQtUoOqXfMipMOkRD9iDWTJBsSo3trL70X1FHOVr6Yqi0mfkX2Y/imxn6wlTWRz28Ru94xrj27OmUnCv7qcG0taO8LNlUCquNFAr2sZ+l+U/GkQrrM1y+ehPz3pmI0cCCd7SX/7+EG9ViZ07BZ31nk4pgnqjmj3nFwqnCE/4IApGnduqtrMDF63C9TnB1TU8oJmbbUCu4ODwRpBPZMnwzaHsLnrpdrB89/98NtTfujdrh3U5bVB+t33yxrXVh+FjgLYj9PVeDixpFDn6V/Xcnv4BbRMNOhXIQT7a7/5b99RiXBjCk6KRu+Jdu5DZ+3G4Nbr4oim3kZFPUHa555qbzTlwAfkrQxKv3C3OdVJR7eGc9ADsbHyEJbdPNAh/T+xblXTXLS3hPYDvgM+WEGy3CytBDG3JVcXm25ZP96EDWjweJ7MyfylubhuKj/iR1Y1wiHeIsYq9CqRrFQUWL8gFJBfmgjs96xRXXXnvyLtKUKpKw3wFg5cR/6FnLeYZ8k=
49+
distributions: "sdist bdist_wheel"

setup.py

Lines changed: 2 additions & 4 deletions
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)