Skip to content

Commit

Permalink
Test Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jraddaoui committed May 11, 2020
1 parent a82b873 commit 21b6893
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .travis.yml
Expand Up @@ -11,10 +11,6 @@ install:

matrix:
include:
- python: 3.7
env: TOXENV=linting
- python: 3.7
env: TOXENV=docs
- python: 2.7
env: TOXENV=py27
- python: 3.5
Expand All @@ -23,6 +19,12 @@ matrix:
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- python: 3.8
env: TOXENV=py38
- python: 3.8
env: TOXENV=linting
- python: 3.8
env: TOXENV=docs

script:
- tox -e $TOXENV
Expand Down
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -24,6 +24,7 @@ METSRW has been tested with:
* Python 3.5
* Python 3.6
* Python 3.7
* Python 3.8

## Basic Usage

Expand Down
3 changes: 3 additions & 0 deletions setup.py
Expand Up @@ -51,6 +51,9 @@ def find_version(*file_paths):
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords="mets",
packages=find_packages(exclude=["docs", "fixtures", "requirements", "tests*"]),
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py{27,35,36,37}, linting, docs
envlist = py{27,35,36,37,38}, linting, docs
skip_missing_interpreters = True
skipsdist = True

Expand Down

0 comments on commit 21b6893

Please sign in to comment.