Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 61f835f

Browse filesBrowse files
committed
Support Python 3.8/3.9 for semver2
1 parent 0631368 commit 61f835f
Copy full SHA for 61f835f

File tree

3 files changed

+12
-2
lines changed
Filter options

3 files changed

+12
-2
lines changed

‎.travis.yml

Copy file name to clipboardExpand all lines: .travis.yml
+8Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,13 @@ matrix:
3232
dist: xenial
3333
env: TOXENV=py37
3434

35+
- python: "3.8"
36+
dist: xenial
37+
env: TOXENV=py38
38+
39+
- python: "3.9-dev"
40+
dist: bionic
41+
env: TOXENV=py39
42+
3543
- python: "pypy"
3644
env: TOXENV=pypy

‎setup.py

Copy file name to clipboardExpand all lines: setup.py
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ def read_file(filename):
9999
"Programming Language :: Python :: 3.5",
100100
"Programming Language :: Python :: 3.6",
101101
"Programming Language :: Python :: 3.7",
102+
"Programming Language :: Python :: 3.8",
103+
"Programming Language :: Python :: 3.9",
102104
"Topic :: Software Development :: Libraries :: Python Modules",
103105
],
104106
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",

‎tox.ini

Copy file name to clipboardExpand all lines: tox.ini
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tox]
22
envlist =
33
flake8
4-
py{27,34,35,36,37}
4+
py{27,34,35,36,37,38,39}
55
pypy
66

77
[testenv]
8-
description = Run test suite
8+
description = Run test suite for {basepython}
99
whitelist_externals = make
1010
commands = pytest {posargs:}
1111
deps =

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.