Refresh Python dependencies

This commit is contained in:
Michael Mintz 2024-06-03 13:37:26 -04:00
parent fc3f55c2c2
commit e25ddb737e
3 changed files with 15 additions and 15 deletions

View File

@ -3,7 +3,7 @@
regex>=2024.5.15
pymdown-extensions>=10.8.1
pipdeptree>=2.20.0
pipdeptree>=2.22.0
python-dateutil>=2.8.2
Markdown==3.6
markdown2==2.4.13
@ -11,7 +11,7 @@ MarkupSafe==2.1.5
Jinja2==3.1.4
click==8.1.7
ghp-import==2.1.0
watchdog==4.0.0
watchdog==4.0.1
cairocffi==1.7.0
pathspec==0.12.1
Babel==2.15.0
@ -20,7 +20,7 @@ lxml==5.2.2
pyquery==2.0.0
readtime==3.0.0
mkdocs==1.6.0
mkdocs-material==9.5.23
mkdocs-material==9.5.25
mkdocs-exclude-search==0.6.6
mkdocs-simple-hooks==0.1.5
mkdocs-material-extensions==1.3.1

View File

@ -1,17 +1,17 @@
pip>=24.0
packaging>=24.0
setuptools>=68.0.0;python_version<"3.8"
setuptools>=69.5.1;python_version>="3.8"
setuptools>=70.0.0;python_version>="3.8"
wheel>=0.42.0;python_version<"3.8"
wheel>=0.43.0;python_version>="3.8"
attrs>=23.2.0
certifi>=2024.2.2
certifi>=2024.6.2
exceptiongroup>=1.2.1
filelock>=3.12.2;python_version<"3.8"
filelock>=3.14.0;python_version>="3.8"
platformdirs>=4.0.0;python_version<"3.8"
platformdirs>=4.2.2;python_version>="3.8"
typing-extensions>=4.11.0;python_version>="3.8"
typing-extensions>=4.12.1;python_version>="3.8"
parse>=1.20.1
parse-type>=0.6.2
pyyaml>=6.0.1
@ -42,7 +42,7 @@ pluggy==1.2.0;python_version<"3.8"
pluggy==1.5.0;python_version>="3.8"
py==1.11.0
pytest==7.4.4;python_version<"3.8"
pytest==8.2.0;python_version>="3.8"
pytest==8.2.1;python_version>="3.8"
pytest-html==2.0.1
pytest-metadata==3.0.0;python_version<"3.8"
pytest-metadata==3.1.1;python_version>="3.8"
@ -73,7 +73,7 @@ rich==13.7.1
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
coverage==7.2.7;python_version<"3.8"
coverage>=7.5.1;python_version>="3.8"
coverage>=7.5.3;python_version>="3.8"
pytest-cov==4.1.0;python_version<"3.8"
pytest-cov>=5.0.0;python_version>="3.8"
flake8==5.0.4;python_version<"3.9"

View File

@ -149,17 +149,17 @@ setup(
'pip>=24.0',
'packaging>=24.0',
'setuptools>=68.0.0;python_version<"3.8"',
'setuptools>=69.5.1;python_version>="3.8"',
'setuptools>=70.0.0;python_version>="3.8"',
'wheel>=0.42.0;python_version<"3.8"',
'wheel>=0.43.0;python_version>="3.8"',
'attrs>=23.2.0',
"certifi>=2024.2.2",
"certifi>=2024.6.2",
"exceptiongroup>=1.2.1",
'filelock>=3.12.2;python_version<"3.8"',
'filelock>=3.14.0;python_version>="3.8"',
'platformdirs>=4.0.0;python_version<"3.8"',
'platformdirs>=4.2.2;python_version>="3.8"',
'typing-extensions>=4.11.0;python_version>="3.8"',
'typing-extensions>=4.12.1;python_version>="3.8"',
'parse>=1.20.1',
'parse-type>=0.6.2',
'pyyaml>=6.0.1',
@ -188,9 +188,9 @@ setup(
'iniconfig==2.0.0',
'pluggy==1.2.0;python_version<"3.8"',
'pluggy==1.5.0;python_version>="3.8"',
"py==1.11.0",
"py==1.11.0", # Needed by pytest-html
'pytest==7.4.4;python_version<"3.8"',
'pytest==8.2.0;python_version>="3.8"',
'pytest==8.2.1;python_version>="3.8"',
"pytest-html==2.0.1", # Newer ones had issues
'pytest-metadata==3.0.0;python_version<"3.8"',
'pytest-metadata==3.1.1;python_version>="3.8"',
@ -230,7 +230,7 @@ setup(
# Usage: coverage run -m pytest; coverage html; coverage report
"coverage": [
'coverage==7.2.7;python_version<"3.8"',
'coverage>=7.5.1;python_version>="3.8"',
'coverage>=7.5.3;python_version>="3.8"',
'pytest-cov==4.1.0;python_version<"3.8"',
'pytest-cov>=5.0.0;python_version>="3.8"',
],
@ -292,7 +292,7 @@ setup(
"selenium-wire": [
'selenium-wire==5.1.0',
'Brotli==1.1.0',
'blinker==1.7.0',
'blinker==1.7.0', # Newer ones had issues
'h2==4.1.0',
'hpack==4.0.0',
'hyperframe==6.0.1',