Skip to content

Commit

Permalink
remove 2.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jklenzing committed Sep 19, 2019
1 parent 0f61894 commit 4b58520
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
7 changes: 1 addition & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: python
dist: xenial
matrix:
include:
- python: 2.7
- python: 3.5
- python: 3.6
- python: 3.7
Expand All @@ -26,11 +25,7 @@ install:
before_script:
# set up display screen
- export DISPLAY=:99.0
- if [[ $TRAVIS_PYTHON_VERSION < "3.0" ]]; then
sh -e /etc/init.d/xvfb start;
sleep 3;
fi


script:
- pytest -vs --cov=sami2py/

Expand Down
9 changes: 4 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ classifiers =
Intended Audience :: Science/Research
License :: BSD
Natural Language :: English
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 All @@ -25,7 +23,7 @@ long_description = file: README.md
long_description_content_type = text/markdown

[options]
python_requires = >= 2.7
python_requires = >= 3.5
setup_requires =
setuptools >= 38.6
pip >= 10
Expand All @@ -34,6 +32,7 @@ zip_safe = False
packages = find:
install_requires =
numpy
pandas<0.25 # FIXME: upper limit on pandas and xarray are just so Travis CI passes python 2.7 tests.
xarray<0.12
pandas
xarray
matplotlib
scripts =

0 comments on commit 4b58520

Please sign in to comment.