Skip to content

Commit

Permalink
Add python3.9 support
Browse files Browse the repository at this point in the history
Closes: gentoo#515
Signed-off-by: Zac Medico <zmedico@gentoo.org>
  • Loading branch information
mrueg authored and zmedico committed Mar 1, 2020
1 parent 1681309 commit d4d1c31
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ python:
- 2.7
- 3.6
- 3.7
- 3.8-dev
- 3.8
- 3.9-dev
- pypy3

# command to install dependencies
Expand Down
8 changes: 4 additions & 4 deletions repoman/runtests
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ import tempfile
# These are the versions we fully support and require to pass tests.
PYTHON_SUPPORTED_VERSIONS = [
'2.7',
'3.5',
'3.6',
'3.7'
'3.7',
'3.8'
]
# The rest are just "nice to have".
PYTHON_NICE_VERSIONS = [
'pypy',
'3.8'
'pypy3',
'3.9'
]

EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/')
Expand Down
8 changes: 4 additions & 4 deletions runtests
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ import tempfile
# These are the versions we fully support and require to pass tests.
PYTHON_SUPPORTED_VERSIONS = [
'2.7',
'3.5',
'3.6',
'3.7'
'3.7',
'3.8'
]
# The rest are just "nice to have".
PYTHON_NICE_VERSIONS = [
'pypy',
'3.8'
'pypy3',
'3.9'
]

EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/')
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[tox]
envlist = py27,py36,py37,py38,pypy3
envlist = py27,py36,py37,py38,py39,pypy3
skipsdist = True

[testenv]
deps =
pygost
pyyaml
py27,py36,py37,py38,pypy3: lxml!=4.2.0
py27,py36,py37,py38,py39,pypy3: lxml!=4.2.0
py27: pyblake2
py27: pysha3
setenv =
Expand Down

0 comments on commit d4d1c31

Please sign in to comment.