summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2021-03-13 19:52:04 +0100
committerGitHub <noreply@github.com>2021-03-13 19:52:04 +0100
commit17f004d5682becb2734d1f3e5473a99090989015 (patch)
tree18b25b261842f8aacda5e33d4a8e5f46bbb54db7
parent99f28acb4e0364e68491f26489fd71e284e483a2 (diff)
parent3b84fd3fc9424902e98a4a4990ea766e4f0f5380 (diff)
downloadpython-json-pointer-17f004d5682becb2734d1f3e5473a99090989015.tar.gz
Merge pull request #39 from stefankoegl/python-3.8
Python 3.8 & 3.9
-rw-r--r--.travis.yml7
-rw-r--r--setup.py3
2 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 0949d44..62ad875 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,14 +1,13 @@
language: python
python:
- '2.7'
-- '3.4'
- '3.5'
- '3.6'
- '3.7'
-- 3.7-dev
-- 3.8-dev
+- '3.8'
+- '3.9'
+- 3.10-dev
- nightly
-- pypy
- pypy3
install:
- travis_retry pip install coveralls
diff --git a/setup.py b/setup.py
index 16ff064..da27f3f 100644
--- a/setup.py
+++ b/setup.py
@@ -41,10 +41,11 @@ CLASSIFIERS = [
'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 :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries',