Skip to content

Commit dc178ed

Browse files
authored
Check compatibility with Python 3.8 (#398)
Test PyGMT with Python 3.8.
1 parent da20303 commit dc178ed

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

.azure-pipelines.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ jobs:
8080

8181
strategy:
8282
matrix:
83+
Python38:
84+
python.version: '3.8'
85+
PYTHON: '3.8'
8386
Python37:
8487
python.version: '3.7'
8588
PYTHON: '3.7'
@@ -164,6 +167,9 @@ jobs:
164167

165168
strategy:
166169
matrix:
170+
Python38:
171+
python.version: '3.8'
172+
PYTHON: '3.8'
167173
Python37:
168174
python.version: '3.7'
169175
PYTHON: '3.7'

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ env:
3333
matrix:
3434
# Build under the following configurations
3535
include:
36+
- name: "Linux - Python 3.8"
37+
os: linux
38+
env:
39+
- PYTHON=3.8
3640
- name: "Linux - Python 3.7"
3741
os: linux
3842
env:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"Topic :: Software Development :: Libraries",
3838
"Programming Language :: Python :: 3.6",
3939
"Programming Language :: Python :: 3.7",
40+
"Programming Language :: Python :: 3.8",
4041
"License :: OSI Approved :: {}".format(LICENSE),
4142
]
4243
PLATFORMS = "Any"

0 commit comments

Comments
 (0)