summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Unterwaditzer <markus@unterwaditzer.net>2020-05-04 12:25:08 +0200
committerGitHub <noreply@github.com>2020-05-04 12:25:08 +0200
commit5c39b454edf0176605d2b12ec60f83da8f82b958 (patch)
tree3b6212917fe14696eae7cd4c86695c82576dd8a5
parent97d60c40406affbc1978c9197ed899653b1b6c7a (diff)
parente8bb206e0e9283bded452616a18e81ffeedce698 (diff)
downloadatomicwrites-5c39b454edf0176605d2b12ec60f83da8f82b958.tar.gz
Merge pull request #51 from jugmac00/modernize-python-versions
Add support for Python 3.8
-rw-r--r--.travis.yml2
-rw-r--r--appveyor.yml8
-rw-r--r--setup.py1
-rw-r--r--tox.ini2
4 files changed, 11 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 715ac80..8f9eec0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,4 +1,3 @@
-sudo: false
os: linux
language: python
@@ -9,6 +8,7 @@ python:
- 3.5
- 3.6
- 3.7
+ - 3.8
env:
- TOXENV=test
diff --git a/appveyor.yml b/appveyor.yml
index 5a94064..5d5f613 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -2,9 +2,17 @@ build: false # Not a C# project, build stuff at the test step instead.
environment:
matrix:
- PYTHON: "C:/Python27"
+ - PYTHON: "C:/Python27-x64"
- PYTHON: "C:/Python34"
+ - PYTHON: "C:/Python34-x64"
- PYTHON: "C:/Python35"
+ - PYTHON: "C:/Python35-x64"
- PYTHON: "C:/Python36"
+ - PYTHON: "C:/Python36-x64"
+ - PYTHON: "C:/Python37"
+ - PYTHON: "C:/Python37-x64"
+ - PYTHON: "C:/Python38"
+ - PYTHON: "C:/Python38-x64"
init:
- "ECHO %PYTHON%"
diff --git a/setup.py b/setup.py
index adbf232..47a2fe5 100644
--- a/setup.py
+++ b/setup.py
@@ -33,6 +33,7 @@ setup(
'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',
],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
diff --git a/tox.ini b/tox.ini
index df7b9ca..6e6d589 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py{27,py,34,35,36}-{test,stylecheck}
+envlist = py{27,py,34,35,36,37,38}-{test,stylecheck}
[testenv]
deps =