Refresh Python dependencies
This commit is contained in:
parent
53975485fb
commit
7ede8273c3
|
@ -3,7 +3,7 @@
|
|||
|
||||
regex>=2024.11.6
|
||||
pymdown-extensions>=10.12
|
||||
pipdeptree>=2.23.4
|
||||
pipdeptree>=2.24.0
|
||||
python-dateutil>=2.8.2
|
||||
Markdown==3.7
|
||||
markdown2==2.5.1
|
||||
|
@ -20,7 +20,7 @@ lxml==5.3.0
|
|||
pyquery==2.0.1
|
||||
readtime==3.0.0
|
||||
mkdocs==1.6.1
|
||||
mkdocs-material==9.5.44
|
||||
mkdocs-material==9.5.46
|
||||
mkdocs-exclude-search==0.6.6
|
||||
mkdocs-simple-hooks==0.1.5
|
||||
mkdocs-material-extensions==1.3.1
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
pip>=24.3.1
|
||||
packaging>=24.2
|
||||
setuptools~=70.2;python_version<"3.10"
|
||||
setuptools>=75.5.0;python_version>="3.10"
|
||||
wheel>=0.45.0
|
||||
setuptools>=75.6.0;python_version>="3.10"
|
||||
wheel>=0.45.1
|
||||
attrs>=24.2.0
|
||||
certifi>=2024.8.30
|
||||
exceptiongroup>=1.2.2
|
||||
|
@ -37,7 +37,7 @@ trio==0.27.0
|
|||
trio-websocket==0.11.1
|
||||
wsproto==1.2.0
|
||||
websocket-client==1.8.0
|
||||
selenium==4.26.1
|
||||
selenium==4.27.1
|
||||
cssselect==1.2.0
|
||||
sortedcontainers==2.4.0
|
||||
execnet==2.1.1
|
||||
|
@ -48,7 +48,8 @@ pytest==8.3.3
|
|||
pytest-html==2.0.1
|
||||
pytest-metadata==3.1.1
|
||||
pytest-ordering==0.6
|
||||
pytest-rerunfailures==14.0
|
||||
pytest-rerunfailures==14.0;python_version<"3.9"
|
||||
pytest-rerunfailures==15.0;python_version>="3.9"
|
||||
pytest-xdist==3.6.1
|
||||
parameterized==0.9.0
|
||||
behave==1.2.6
|
||||
|
@ -64,7 +65,7 @@ rich==13.9.4
|
|||
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
|
||||
|
||||
coverage>=7.6.1;python_version<"3.9"
|
||||
coverage>=7.6.7;python_version>="3.9"
|
||||
coverage>=7.6.8;python_version>="3.9"
|
||||
pytest-cov>=5.0.0;python_version<"3.9"
|
||||
pytest-cov>=6.0.0;python_version>="3.9"
|
||||
flake8==5.0.4;python_version<"3.9"
|
||||
|
|
11
setup.py
11
setup.py
|
@ -150,8 +150,8 @@ setup(
|
|||
'pip>=24.3.1',
|
||||
'packaging>=24.2',
|
||||
'setuptools~=70.2;python_version<"3.10"', # Newer ones had issues
|
||||
'setuptools>=75.5.0;python_version>="3.10"',
|
||||
'wheel>=0.45.0',
|
||||
'setuptools>=75.6.0;python_version>="3.10"',
|
||||
'wheel>=0.45.1',
|
||||
'attrs>=24.2.0',
|
||||
"certifi>=2024.8.30",
|
||||
"exceptiongroup>=1.2.2",
|
||||
|
@ -186,7 +186,7 @@ setup(
|
|||
'trio-websocket==0.11.1',
|
||||
'wsproto==1.2.0',
|
||||
'websocket-client==1.8.0',
|
||||
'selenium==4.26.1',
|
||||
'selenium==4.27.1',
|
||||
'cssselect==1.2.0',
|
||||
"sortedcontainers==2.4.0",
|
||||
'execnet==2.1.1',
|
||||
|
@ -197,7 +197,8 @@ setup(
|
|||
"pytest-html==2.0.1", # Newer ones had issues
|
||||
'pytest-metadata==3.1.1',
|
||||
"pytest-ordering==0.6",
|
||||
'pytest-rerunfailures==14.0',
|
||||
'pytest-rerunfailures==14.0;python_version<"3.9"',
|
||||
'pytest-rerunfailures==15.0;python_version>="3.9"',
|
||||
'pytest-xdist==3.6.1',
|
||||
'parameterized==0.9.0',
|
||||
"behave==1.2.6",
|
||||
|
@ -222,7 +223,7 @@ setup(
|
|||
# Usage: coverage run -m pytest; coverage html; coverage report
|
||||
"coverage": [
|
||||
'coverage>=7.6.1;python_version<"3.9"',
|
||||
'coverage>=7.6.7;python_version>="3.9"',
|
||||
'coverage>=7.6.8;python_version>="3.9"',
|
||||
'pytest-cov>=5.0.0;python_version<"3.9"',
|
||||
'pytest-cov>=6.0.0;python_version>="3.9"',
|
||||
],
|
||||
|
|
Loading…
Reference in New Issue