1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-11 14:48:22 +00:00

Merge pull request #7991 from ThomasWaldmann/cleanup-requirements-1.4

Cleanup requirements (1.4-maint)
This commit is contained in:
TW 2023-12-24 02:57:15 +01:00 committed by GitHub
commit fb1a327008
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 12 deletions

View file

@ -1,12 +1,12 @@
setuptools==68.2.2 setuptools==69.0.3
setuptools-scm==8.0.4 setuptools-scm==8.0.4
pip==23.3.1 pip==23.3.2
virtualenv==20.24.6 virtualenv==20.25.0
pkgconfig==1.5.5 pkgconfig==1.5.5
tox==4.11.3 tox==4.11.4
pytest==7.4.3 pytest==7.4.3
pytest-xdist==3.3.1 pytest-xdist==3.5.0
pytest-cov==4.1.0 pytest-cov==4.1.0
pytest-benchmark==4.0.0 pytest-benchmark==4.0.0
Cython==0.29.36 Cython==3.0.7
python-dateutil==2.8.2 python-dateutil==2.8.2

View file

@ -1,5 +1,5 @@
setuptools >=45, !=60.6.0, !=60.7.0 setuptools>=64
setuptools_scm setuptools_scm>=8
pip pip
virtualenv virtualenv
pkgconfig pkgconfig

View file

@ -70,7 +70,7 @@ install_requires = [
# Please note: # Please note:
# using any other msgpack version is not supported by borg development and # using any other msgpack version is not supported by borg development and
# any feedback related to issues caused by this will be ignored. # any feedback related to issues caused by this will be ignored.
'msgpack >=0.5.6, <=1.0.7, !=1.0.1', 'msgpack >=1.0.2, <=1.0.7',
'packaging', 'packaging',
] ]

View file

@ -182,8 +182,8 @@ def is_slow_msgpack():
def is_supported_msgpack(): def is_supported_msgpack():
# DO NOT CHANGE OR REMOVE! See also requirements and comments in setup.py. # DO NOT CHANGE OR REMOVE! See also requirements and comments in setup.py.
import msgpack import msgpack
return (0, 5, 6) <= msgpack.version <= (1, 0, 7) and \ return (1, 0, 2) <= msgpack.version <= (1, 0, 7) and \
msgpack.version not in [(1, 0, 1), ] # < add bad releases here to deny list msgpack.version not in [] # < add bad releases here to deny list
def get_limited_unpacker(kind): def get_limited_unpacker(kind):

View file

@ -3,7 +3,6 @@
[tox] [tox]
envlist = py{38,39,310,311,312}-{none,fuse2,fuse3} envlist = py{38,39,310,311,312}-{none,fuse2,fuse3}
minversion = 3.2
requires = requires =
pkgconfig pkgconfig
cython cython