Skip to content

Commit

Permalink
Merge pull request #170 from cfpb/remove-py2
Browse files Browse the repository at this point in the history
Remove references to python 2
  • Loading branch information
schbetsy authored Jan 14, 2020
2 parents d751a3b + 8410d70 commit a921d53
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
language: python
python:
- 2.7
- 3.6
install:
- pip install tox-travis
Expand All @@ -12,7 +11,7 @@ script:
# We don't want changes to package-lock.json to show up as local git
# changes when the Python wheel tag is determined.
- git checkout package-lock.json
- python setup.py bdist_wheel --universal
- python setup.py bdist_wheel
after_script:
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
deploy:
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ def read_file(filename):
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Framework :: Django',
'Development Status :: 4 - Beta',
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
skipsdist=True
envlist=py{27,36}-dj{111}
envlist=py{36}-dj{111}

[testenv]
install_command=pip install -e ".[testing]" -U {opts} {packages}
Expand All @@ -10,7 +10,6 @@ commands=
coverage report --skip-covered

basepython=
py27: python2.7
py36: python3.6

deps=
Expand Down

0 comments on commit a921d53

Please sign in to comment.