Skip to content

Commit

Permalink
Enable Python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthchirp committed Nov 4, 2019
1 parent caa5813 commit d59eda4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@ language: python

matrix:
include:
- python: 3.8
dist: xenial
sudo: true
- python: 3.7
dist: xenial
sudo: true
- python: 3.6
- python: 3.5
- python: 2.7
- python: pypy
- os: osx
language: generic
env: CONDA=3.8 TOXENV=py38
- os: osx
language: generic
env: CONDA=3.7 TOXENV=py37
Expand Down Expand Up @@ -63,4 +69,4 @@ deploy:
on:
tags: true
repo: DiamondLightSource/python-procrunner
python: 3.7
python: 3.8
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Before you submit a pull request, check that it meets these guidelines:
2. If the pull request adds functionality, the docs should be updated. Put
your new functionality into a function with a docstring, and add the
feature to the list in README.rst.
3. The pull request should work for Python 2.7, 3.5, 3.6, 3.7, and for PyPy. Check
3. The pull request should work for Python 2.7, 3.5, 3.6, 3.7, 3.8, and for PyPy. Check
https://travis-ci.org/DiamondLightSource/python-procrunner/pull_requests
and make sure that the tests pass for all supported Python versions.

Expand Down
4 changes: 4 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,17 @@ environment:
UNSTABLE: 1
- PYTHON: "C:\\Python37"
UNSTABLE: 1
- PYTHON: "C:\\Python38"
UNSTABLE: 1
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python35-x64"
UNSTABLE: 1
- PYTHON: "C:\\Python36-x64"
UNSTABLE: 1
- PYTHON: "C:\\Python37-x64"
UNSTABLE: 1
- PYTHON: "C:\\Python38-x64"
UNSTABLE: 1

matrix:
allow_failures:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down

0 comments on commit d59eda4

Please sign in to comment.