Skip to content

Commit

Permalink
Merge pull request #6 from lanl-ansi/drop-py2
Browse files Browse the repository at this point in the history
Drop Support for Python 2.7 and 3.4
  • Loading branch information
ccoffrin authored Aug 18, 2019
2 parents 89bc9b6 + 2ce2d04 commit ff70e05
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@ language: python
os:
- linux
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
- '3.7'
install:
- pip install tox-travis
- pip install codecov
- pip install grg-mpdata grg-grgdata
- pip install grg-mpdata grg-grgdata # needed for check version
script:
- tox
- "./check_version.py"
Expand All @@ -23,4 +22,4 @@ deploy:
on:
tags: true
branch: master
condition: $TRAVIS_PYTHON_VERSION = '3.6'
condition: $TRAVIS_PYTHON_VERSION = '3.7'
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Changelog

**staged**

- nothing
- dropped support for python 2.7 and 3.4

**v0.1.1**

Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,10 @@ def find_version(*file_paths):
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]

setup(
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{27,34,35,36}
envlist = py{35,36,37}

[testenv]
passenv = CI TRAVIS TRAVIS_*
Expand Down

0 comments on commit ff70e05

Please sign in to comment.