Skip to content

Commit 8427225

Browse files
ENH: support py3.8+
1 parent e3f80ac commit 8427225

4 files changed

Lines changed: 11 additions & 8 deletions

File tree

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ os:
77

88
env:
99
- MYUSEMC=true MYPYTHON_VERSION=2.7
10-
- MYUSEMC=true MYPYTHON_VERSION=3.5
11-
- MYUSEMC=true MYPYTHON_VERSION=3.6
1210
- MYUSEMC=true MYPYTHON_VERSION=3.7
11+
- MYUSEMC=true MYPYTHON_VERSION=3.8
12+
- MYUSEMC=true MYPYTHON_VERSION=3.9
13+
- MYUSEMC=true MYPYTHON_VERSION=3.10
1314
- MYUSEMC=false
1415

1516
matrix:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ is available in the doc/Farrow-jpcm-2007.pdf paper.
2020
REQUIREMENTS
2121
------------------------------------------------------------------------
2222

23-
PDFgui requires Python 3.7, 3.6, 3.5 or 2.7 and several third-party
23+
PDFgui requires Python 3.7 or later or 2.7 and several third-party
2424
libraries that are used by PDFgui and its components.
2525

2626
* setuptools - tools for installing Python packages
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
python:
2+
- 3.10
3+
- 3.9
4+
- 3.8
25
- 3.7
3-
- 3.6
4-
- 3.5
56
- 2.7

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# Use this version when git data are not available, like in git zip archive.
1717
# Update when tagging a new release.
18-
FALLBACK_VERSION = '1.1.2.post0'
18+
FALLBACK_VERSION = '1.2.0'
1919

2020
# determine if we run with Python 3.
2121
PY3 = (sys.version_info[0] == 3)
@@ -142,9 +142,10 @@ def dirglob(d, *patterns):
142142
'Operating System :: Microsoft :: Windows',
143143
'Operating System :: POSIX',
144144
'Programming Language :: Python :: 2.7',
145-
'Programming Language :: Python :: 3.5',
146-
'Programming Language :: Python :: 3.6',
147145
'Programming Language :: Python :: 3.7',
146+
'Programming Language :: Python :: 3.8',
147+
'Programming Language :: Python :: 3.9',
148+
'Programming Language :: Python :: 3.10',
148149
'Topic :: Scientific/Engineering :: Chemistry',
149150
'Topic :: Scientific/Engineering :: Physics',
150151
],

0 commit comments

Comments
 (0)