mirror of
https://github.com/pypiserver/pypiserver
synced 2024-11-09 16:45:51 +01:00
ENH: Officially support python 3.8 (#292)
This commit is contained in:
parent
2dfc7f8ea1
commit
98958cf2f8
@ -66,10 +66,9 @@ test-3.7:
|
||||
script:
|
||||
- tox -e py37
|
||||
|
||||
test-3.8-rc:
|
||||
test-3.8:
|
||||
extends: .base_test
|
||||
image: python:3.8-rc
|
||||
allow_failure: true
|
||||
image: python:3.8
|
||||
script:
|
||||
- tox -e py38
|
||||
|
||||
|
@ -7,6 +7,8 @@ python:
|
||||
- 3.4
|
||||
- 3.5
|
||||
- 3.6
|
||||
- 3.7
|
||||
- 3.8
|
||||
- pypy
|
||||
- pypy3
|
||||
|
||||
|
@ -4,6 +4,7 @@ Changelog
|
||||
x.x.x (tbd)
|
||||
-----------
|
||||
|
||||
- ENH: Add official support and testing for Python 3.8
|
||||
- MAINT: Update bottle to [0.12.18](https://github.com/bottlepy/bottle/releases/tag/0.12.18)
|
||||
for Python 3.8 compatibility
|
||||
|
||||
|
1
setup.py
1
setup.py
@ -71,6 +71,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",
|
||||
"Programming Language :: Python :: Implementation :: PyPy",
|
||||
"Topic :: Software Development :: Build Tools",
|
||||
|
2
tox.ini
2
tox.ini
@ -1,5 +1,5 @@
|
||||
[tox]
|
||||
envlist = py27,py34,py35,py36,py37,pypy,pypy3
|
||||
envlist = py27,py34,py35,py36,py37,py38,pypy,pypy3
|
||||
|
||||
[testenv]
|
||||
deps=-r{toxinidir}/requirements/dev.pip
|
||||
|
Loading…
Reference in New Issue
Block a user