Skip to content

Commit f73055f

Browse files
cclaussmvanlonden
authored andcommitted
Drop support for Python 3.4 because it is EOL (#963)
1 parent a5162e9 commit f73055f

File tree

5 files changed

+8
-11
lines changed

5 files changed

+8
-11
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ matrix:
33
include:
44
- env: TOXENV=py27
55
python: 2.7
6-
- env: TOXENV=py34
7-
python: 3.4
86
- env: TOXENV=py35
97
python: 3.5
108
- env: TOXENV=py36

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ You can also run the benchmarks with:
168168
py.test graphene --benchmark-only
169169
```
170170

171-
Graphene supports several versions of Python. To make sure that changes do not break compatibility with any of those versions, we use `tox` to create virtualenvs for each python version and run tests with that version. To run against all python versions defined in the `tox.ini` config file, just run:
171+
Graphene supports several versions of Python. To make sure that changes do not break compatibility with any of those versions, we use `tox` to create virtualenvs for each Python version and run tests with that version. To run against all Python versions defined in the `tox.ini` config file, just run:
172172

173173
```sh
174174
tox
@@ -180,7 +180,7 @@ If you wish to run against a specific version defined in the `tox.ini` file:
180180
tox -e py36
181181
```
182182

183-
Tox can only use whatever versions of python are installed on your system. When you create a pull request, Travis will also be running the same tests and report the results, so there is no need for potential contributors to try to install every single version of python on their own system ahead of time. We appreciate opening issues and pull requests to make graphene even more stable & useful!
183+
Tox can only use whatever versions of Python are installed on your system. When you create a pull request, Travis will also be running the same tests and report the results, so there is no need for potential contributors to try to install every single version of Python on their own system ahead of time. We appreciate opening issues and pull requests to make graphene even more stable & useful!
184184

185185
### Building Documentation
186186

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,8 @@ You can also run the benchmarks with:
308308
309309
Graphene supports several versions of Python. To make sure that changes
310310
do not break compatibility with any of those versions, we use ``tox`` to
311-
create virtualenvs for each python version and run tests with that
312-
version. To run against all python versions defined in the ``tox.ini``
311+
create virtualenvs for each Python version and run tests with that
312+
version. To run against all Python versions defined in the ``tox.ini``
313313
config file, just run:
314314

315315
.. code:: sh
@@ -323,10 +323,10 @@ file:
323323
324324
tox -e py36
325325
326-
Tox can only use whatever versions of python are installed on your
326+
Tox can only use whatever versions of Python are installed on your
327327
system. When you create a pull request, Travis will also be running the
328328
same tests and report the results, so there is no need for potential
329-
contributors to try to install every single version of python on their
329+
contributors to try to install every single version of Python on their
330330
own system ahead of time. We appreciate opening issues and pull requests
331331
to make graphene even more stable & useful!
332332

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,9 @@ def run_tests(self):
7676
"Programming Language :: Python :: 2",
7777
"Programming Language :: Python :: 2.7",
7878
"Programming Language :: Python :: 3",
79-
"Programming Language :: Python :: 3.3",
80-
"Programming Language :: Python :: 3.4",
8179
"Programming Language :: Python :: 3.5",
8280
"Programming Language :: Python :: 3.6",
81+
"Programming Language :: Python :: 3.7",
8382
"Programming Language :: Python :: Implementation :: PyPy",
8483
],
8584
keywords="api graphql protocol rest relay graphene",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ deps =
99
setenv =
1010
PYTHONPATH = .:{envdir}
1111
commands =
12-
py{27,34,py}: py.test --cov=graphene graphene examples {posargs}
12+
py{27,py}: py.test --cov=graphene graphene examples {posargs}
1313
py{35,36,37}: py.test --cov=graphene graphene examples tests_asyncio {posargs}
1414

1515
[testenv:pre-commit]

0 commit comments

Comments
 (0)