Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,10 @@ def install_pythons(boxname)
. ~/.bash_profile
pyenv install 3.5.3 # tests, 3.5.3 is first to support openssl 1.1
pyenv install 3.6.2 # tests
pyenv install 3.7.9 # binary build, use latest 3.7.x release
pyenv install 3.7.11 # binary build, use latest 3.7.x release
pyenv install 3.8.0 # tests
pyenv install 3.9.0 # tests
pyenv install 3.10-dev # tests
pyenv rehash
EOF
end
Expand All @@ -237,8 +238,8 @@ def build_pyenv_venv(boxname)
. ~/.bash_profile
cd /vagrant/borg
# use the latest 3.7 release
pyenv global 3.7.9
pyenv virtualenv 3.7.9 borg-env
pyenv global 3.7.11
pyenv virtualenv 3.7.11 borg-env
ln -s ~/.pyenv/versions/borg-env .
EOF
end
Expand Down Expand Up @@ -299,8 +300,8 @@ def run_tests(boxname)
. ../borg-env/bin/activate
if which pyenv 2> /dev/null; then
# for testing, use the earliest point releases of the supported python versions:
pyenv global 3.5.3 3.6.2 3.7.9 3.8.0 3.9.0
pyenv local 3.5.3 3.6.2 3.7.9 3.8.0 3.9.0
pyenv global 3.5.3 3.6.2 3.7.11 3.8.0 3.9.0 3.10-dev
pyenv local 3.5.3 3.6.2 3.7.11 3.8.0 3.9.0 3.10-dev
fi
# otherwise: just use the system python
if which fakeroot 2> /dev/null; then
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -882,6 +882,7 @@ def run(self):
'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',
],
Expand Down