mirror of
https://github.com/borgbackup/borg.git
synced 2026-05-28 04:03:21 -04:00
add support and testing for python 3.10
This commit is contained in:
parent
d96ff92e85
commit
24a7f107a9
3 changed files with 5 additions and 1 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
|
@ -66,6 +66,9 @@ jobs:
|
|||
- os: ubuntu-20.04
|
||||
python-version: 3.9
|
||||
toxenv: py39
|
||||
- os: ubuntu-20.04
|
||||
python-version: 3.10
|
||||
toxenv: py310
|
||||
- os: macos-latest
|
||||
# note: it seems that 3.8 and 3.9 are currently broken,
|
||||
# neverending RuntimeError crashes...
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -875,6 +875,7 @@ setup(
|
|||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: 3.9',
|
||||
'Programming Language :: Python :: 3.10',
|
||||
'Topic :: Security :: Cryptography',
|
||||
'Topic :: System :: Archiving :: Backup',
|
||||
],
|
||||
|
|
|
|||
2
tox.ini
2
tox.ini
|
|
@ -2,7 +2,7 @@
|
|||
# fakeroot -u tox --recreate
|
||||
|
||||
[tox]
|
||||
envlist = py{35,36,37,38,39}
|
||||
envlist = py{35,36,37,38,39,310}
|
||||
|
||||
[testenv]
|
||||
deps =
|
||||
|
|
|
|||
Loading…
Reference in a new issue