Skip to content

Commit

Permalink
Update Python tools and other packaging requirement versions, then re…
Browse files Browse the repository at this point in the history
…generate requirements.txt from scratch, e.g. maturin to 1.8.0
  • Loading branch information
nth10sd committed Dec 26, 2024
1 parent cd49d53 commit 62c402f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 14 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ dependencies = [
"types-setuptools==75.5.0.20241121", # Bump types-* only with mypy
"typing-extensions ~= 4.12.2", # Directly import Self from typing on Python 3.11+
'tomli ~= 2.2.1; python_version <= "3.10"',
"uv >= 0.5.11", # CI looks out for the comparison: >=
"uv >= 0.5.12", # CI looks out for the comparison: >=
"wheel==0.45.0",
]
dynamic = ["version", "readme"]

[project.optional-dependencies]
test = [
"bashate ~= 2.1.1",
'coverage ~= 7.6.9; python_version >= "3.11"',
'coverage[toml] ~= 7.6.9; python_version <= "3.10"',
'coverage ~= 7.6.10; python_version >= "3.11"',
'coverage[toml] ~= 7.6.10; python_version <= "3.10"',
"mypy ~= 1.13.0",
"overrides ~= 7.7.0",
"pylint ~= 3.3.3",
Expand Down
18 changes: 7 additions & 11 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ alabaster==1.0.0
# via sphinx
astroid==3.3.8
# via pylint
attrs==24.2.0
attrs==24.3.0
# via pytest-mypy
babel==2.16.0
# via sphinx
bashate==2.1.1
# via startrepo (pyproject.toml)
certifi==2024.8.30
certifi==2024.12.14
# via requests
charset-normalizer==3.4.0
charset-normalizer==3.4.1
# via requests
colorama==0.4.6 ; sys_platform == 'win32'
# via
# pylint
# pytest
# sphinx
coverage[toml]==7.6.9
coverage[toml]==7.6.10
# via
# startrepo (pyproject.toml)
# pytest-cov
Expand Down Expand Up @@ -141,11 +141,7 @@ sphinxcontrib-qthelp==2.0.0
# via sphinx
sphinxcontrib-serializinghtml==2.0.0
# via sphinx
tomli==2.1.0 ; python_full_version == '3.11'
# via
# startrepo (pyproject.toml)
# coverage
tomli==2.2.1 ; python_full_version < '3.11'
tomli==2.2.1 ; python_full_version <= '3.11'
# via
# startrepo (pyproject.toml)
# coverage
Expand All @@ -167,9 +163,9 @@ typing-extensions==4.12.2
# astroid
# mypy
# pyright
urllib3==2.2.3
urllib3==2.3.0
# via requests
uv==0.5.11
uv==0.5.12
# via startrepo (pyproject.toml)
vulture==2.14
# via
Expand Down

0 comments on commit 62c402f

Please sign in to comment.