Skip to content

Commit

Permalink
Merge pull request #28 from jdufresne/py38
Browse files Browse the repository at this point in the history
Update Python test matrix
  • Loading branch information
cpburnz committed Nov 14, 2019
2 parents e62e5c1 + 446c5b9 commit 6c51ad8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ cache: pip
matrix:
fast_finish: true
include:
- python: 3.8
- python: 3.7
dist: xenial
- python: 3.6
- python: 3.5
- python: 3.4
- python: 2.7
- python: pypy
- python: pypy3

install:
- pip install -U pip
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
url="https://github.com/cpburnz/python-path-specification",
description="Utility library for gitignore style pattern matching of file paths.",
long_description=readme + "\n\n" + changes,
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
Expand All @@ -29,10 +29,10 @@
"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",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
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 = py27, py34, py35, py36, py37, pypy, pypy3
envlist = py{27,35,36,37,38,py,py3}

[testenv]
commands = python setup.py test

0 comments on commit 6c51ad8

Please sign in to comment.