Skip to content

Commit fc802df

Browse files
alexreaperhulk
authored andcommitted
Fixes pyca#868 -- test on py38 (pyca#870)
1 parent 60827f8 commit fc802df

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ matrix:
2929
env: TOXENV=py36
3030
- python: "3.7"
3131
env: TOXENV=py37
32+
- python: "3.8"
33+
env: TOXENV=py38
3234
- python: "pypy2.7-5.10.0"
3335
env: TOXENV=pypy
3436
- python: "pypy3.5-5.10.1"
@@ -45,6 +47,8 @@ matrix:
4547
env: TOXENV=py36-cryptographyMaster
4648
- python: "3.7"
4749
env: TOXENV=py37-cryptographyMaster
50+
- python: "3.8"
51+
env: TOXENV=py38-cryptographyMaster
4852
- python: "pypy2.7-5.10.0"
4953
env: TOXENV=pypy-cryptographyMaster
5054
- python: "pypy3.5-5.10.1"
@@ -61,6 +65,8 @@ matrix:
6165
env: TOXENV=py36-cryptographyMinimum
6266
- python: "3.7"
6367
env: TOXENV=py37-cryptographyMinimum
68+
- python: "3.8"
69+
env: TOXENV=py38-cryptographyMinimum
6470
- python: "pypy2.7-5.10.0"
6571
env: TOXENV=pypy-cryptographyMinimum
6672
- python: "pypy3.5-5.10.1"
@@ -100,6 +106,7 @@ matrix:
100106
- env: TOXENV=py35-cryptographyMaster
101107
- env: TOXENV=py36-cryptographyMaster
102108
- env: TOXENV=py37-cryptographyMaster
109+
- env: TOXENV=py38-cryptographyMaster
103110
- env: TOXENV=pypy-cryptographyMaster
104111
- env: TOXENV=pypy3-cryptographyMaster
105112

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ def find_meta(meta):
8181
'Programming Language :: Python :: 3.5',
8282
'Programming Language :: Python :: 3.6',
8383
'Programming Language :: Python :: 3.7',
84+
'Programming Language :: Python :: 3.8',
8485

8586
'Programming Language :: Python :: Implementation :: CPython',
8687
'Programming Language :: Python :: Implementation :: PyPy',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = {pypy,pypy3,py27,py34,py35,py36,py37}{,-cryptographyMaster,-cryptographyMinimum}{,-randomorder},py27-twistedMaster,pypi-readme,check-manifest,flake8,docs,coverage-report
2+
envlist = {pypy,pypy3,py27,py34,py35,py36,py37,py38}{,-cryptographyMaster,-cryptographyMinimum}{,-randomorder},py27-twistedMaster,pypi-readme,check-manifest,flake8,docs,coverage-report
33

44
[testenv]
55
whitelist_externals =

0 commit comments

Comments
 (0)