Skip to content

Commit

Permalink
Ditch official support for Python 2.7 and 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rehandalal committed Aug 2, 2019
1 parent 917a357 commit 5637859
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 19 deletions.
16 changes: 2 additions & 14 deletions .circleci/config.yml
Expand Up @@ -34,7 +34,7 @@ jobs:

test: &test-defaults
docker:
- image: circleci/python:2.7
- image: circleci/python:3.7

steps:
- checkout
Expand All @@ -59,16 +59,6 @@ jobs:
- codecov/upload:
file: coverage.xml

test-py27:
<<: *test-defaults
docker:
- image: circleci/python:2.7

test-py34:
<<: *test-defaults
docker:
- image: circleci/python:3.4

test-py35:
<<: *test-defaults
docker:
Expand All @@ -86,7 +76,7 @@ jobs:

deploy:
docker:
- image: circleci/python:3.6
- image: circleci/python:3.7

steps:
- checkout
Expand Down Expand Up @@ -162,8 +152,6 @@ workflows:
- deploy:
requires:
- lint
- test-py27
- test-py34
- test-py35
- test-py36
- test-py37
Expand Down
2 changes: 0 additions & 2 deletions bors.toml
@@ -1,7 +1,5 @@
status = [
"ci/circleci: lint",
"ci/circleci: test-py27",
"ci/circleci: test-py34",
"ci/circleci: test-py35",
"ci/circleci: test-py36",
"ci/circleci: test-py37",
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Expand Up @@ -56,8 +56,6 @@ def run(self):
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py34, py35, py36, py37
envlist = py35, py36, py37

[testenv]
commands = py.test tests -vv
Expand Down

0 comments on commit 5637859

Please sign in to comment.