Skip to content

Commit 69c7045

Browse files
committed
Updated files with 'repo_helper'.
1 parent fe224fd commit 69c7045

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ python:
1010
- '3.8'
1111
- 'pypy3'
1212
- '3.9'
13+
- '3.9-dev'
1314

1415
arch:
1516
- amd64
@@ -44,6 +45,8 @@ jobs:
4445
arch: arm64
4546
- python: '3.9'
4647
arch: arm64
48+
- python: '3.9-dev'
49+
arch: arm64
4750

4851
include:
4952
- stage: test

tox.ini

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
# * pytest
2020

2121
[tox]
22-
envlist = py36, py37, py38, pypy3, py39, mypy, build
22+
envlist = py36, py37, py38, pypy3, py39, py39-dev, mypy, build
2323
skip_missing_interpreters = True
2424
requires = pip>=20.2.1
2525
isolated_build = True
2626

2727
[envlists]
28-
test = py36, py37, py38, pypy3, py39
28+
test = py36, py37, py38, pypy3, py39, py39-dev
2929
qa = mypy, lint
3030
cov = py36, coverage
3131

@@ -36,6 +36,7 @@ python =
3636
3.8: py38, build
3737
pypy3: pypy3, build
3838
3.9: py39, build
39+
3.9-dev: py39-dev, build
3940

4041
[gh-actions]
4142
python =
@@ -44,6 +45,7 @@ python =
4445
3.8: py38, build
4546
pypy3: pypy3, build
4647
3.9: py39, build
48+
3.9-dev: py39-dev, build
4749

4850
[testenv]
4951
setenv =
@@ -69,9 +71,10 @@ commands = sphinx-build -M html . ./build {posargs}
6971
skip_install = True
7072
changedir = {toxinidir}
7173
deps =
72-
twine
73-
pep517
74-
check-wheel-contents
74+
twine>=3.2.0
75+
pep517>=0.9.1
76+
check-wheel-contents>=0.1.0
77+
repo_helper
7578
commands =
7679
python -m pep517.build --source --binary "{toxinidir}"
7780
twine check dist/*
@@ -137,8 +140,8 @@ ignore_errors = True
137140
whitelist_externals = /bin/bash
138141
changedir = {toxinidir}
139142
deps =
140-
coverage
141-
coverage_pyver_pragma
143+
coverage>=5
144+
coverage_pyver_pragma>=0.0.6
142145
commands =
143146
/bin/bash -c "rm -rf htmlcov"
144147
coverage html

0 commit comments

Comments
 (0)