Skip to content

Commit c2f78a6

Browse files
authored
Fix sorting not using full spec (#232)
1 parent 140e58e commit c2f78a6

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
build-backend = "hatchling.build"
33
requires = [
44
"hatch-vcs>=0.4",
5-
"hatchling>=1.24.2",
5+
"hatchling>=1.25",
66
]
77

88
[project]
@@ -33,19 +33,19 @@ dynamic = [
3333
"version",
3434
]
3535
dependencies = [
36-
"pyproject-fmt-rust==1.1.4",
36+
"pyproject-fmt-rust==1.1.5",
3737
"tomli>=2.0.1; python_version<'3.11'",
3838
]
3939
optional-dependencies.docs = [
4040
"furo>=2024.5.6",
4141
"sphinx>=7.3.7",
42-
"sphinx-argparse-cli>=1.15",
43-
"sphinx-autodoc-typehints>=2.1",
42+
"sphinx-argparse-cli>=1.16",
43+
"sphinx-autodoc-typehints>=2.2.2",
4444
"sphinx-copybutton>=0.5.2",
4545
]
4646
optional-dependencies.test = [
4747
"covdefaults>=2.3",
48-
"pytest>=8.2",
48+
"pytest>=8.2.2",
4949
"pytest-cov>=5",
5050
"pytest-mock>=3.14",
5151
]

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ commands =
3535
description = run static analysis and style check using flake8
3636
skip_install = true
3737
deps =
38-
pre-commit>=3.7
38+
pre-commit>=3.7.1
3939
commands =
4040
pre-commit run --all-files --show-diff-on-failure
4141
python -c 'print("hint: run {envdir}/bin/pre-commit install to add checks as pre-commit hook")'
4242

4343
[testenv:type]
4444
description = run type check on code base
4545
deps =
46-
mypy==1.10
46+
mypy==1.10.1
4747
set_env =
4848
{tty:MYPY_FORCE_COLOR = 1}
4949
commands =
@@ -55,7 +55,7 @@ description = check that the long description is valid
5555
skip_install = true
5656
deps =
5757
build[virtualenv]>=1.2.1
58-
twine>=5
58+
twine>=5.1.1
5959
commands =
6060
python -m build --sdist --wheel -o {envtmpdir} .
6161
twine check {envtmpdir}/*

0 commit comments

Comments
 (0)