Test on Python 3.9
This commit is contained in:
parent
2fcd8d92f2
commit
848f051a89
4 changed files with 4 additions and 1 deletions
|
@ -7,6 +7,7 @@ jobs:
|
|||
- python: "3.7"
|
||||
- python: "3.8"
|
||||
env: "CC_TEST_REPORTER_ID=2a411f596959fc32f5d73f3ba7cef8cc4d5733299d742dbfc97fd6c190b9010c"
|
||||
- python: "3.9"
|
||||
cache: pip
|
||||
git:
|
||||
depth: false
|
||||
|
|
1
Jenkinsfile
vendored
1
Jenkinsfile
vendored
|
@ -1,4 +1,5 @@
|
|||
def pys = [
|
||||
[name: 'Python 3.9', docker:'python:3.9-buster', tox:'py39', main: false],
|
||||
[name: 'Python 3.8', docker:'python:3.8-buster', tox:'py38,flake8', main: true],
|
||||
[name: 'Python 3.7', docker:'python:3.7-buster', tox:'py37', main: false],
|
||||
[name: 'Python 3.6', docker:'python:3.6-buster', tox:'py36', main: false],
|
||||
|
|
|
@ -22,6 +22,7 @@ classifiers =
|
|||
Programming Language :: Python :: 3.6
|
||||
Programming Language :: Python :: 3.7
|
||||
Programming Language :: Python :: 3.8
|
||||
Programming Language :: Python :: 3.9
|
||||
Topic :: Internet :: WWW/HTTP
|
||||
Topic :: Multimedia :: Graphics
|
||||
keywords = comic,webcomic,downloader,archiver,crawler
|
||||
|
|
2
tox.ini
2
tox.ini
|
@ -1,5 +1,5 @@
|
|||
[tox]
|
||||
envlist = py35, py36, py37, py38, flake8
|
||||
envlist = py35, py36, py37, py38, py39, flake8
|
||||
|
||||
[testenv]
|
||||
commands =
|
||||
|
|
Loading…
Reference in a new issue