Skip to content

Commit 3aab256

Browse files
committed
Remove exact dev deps versions
1 parent 21e5d36 commit 3aab256

2 files changed

Lines changed: 7 additions & 9 deletions

File tree

Pipfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,12 @@ name = "pypi"
66
[packages]
77
prompt-toolkit = "*"
88
pyparsing = "*"
9-
typing-extensions = "*"
109

1110
[dev-packages]
1211
hatch = "~=1.14"
13-
mypy = "~=1.10"
14-
pytest = ">=7.4"
15-
ruff = "0.9.2"
12+
mypy = "*"
13+
pytest = "*"
14+
ruff = "*"
1615

1716
[requires]
1817
python_version = "3.7"

pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,14 @@ include = [
5555
[tool.hatch.envs.dev]
5656
python = "3.13"
5757
dependencies = [
58-
"mypy>=1.14",
58+
"mypy",
5959
"tomli~=2.0", # For mypy
60-
"pytest>=7.4",
61-
"ruff>=0.9.2",
60+
"pytest",
61+
"ruff",
6262
]
6363
[tool.hatch.envs.hatch-test]
6464
dependencies = [
65-
"pytest>=7.4",
66-
'tomli~=2.0; python_version<"3.11"',
65+
"pytest",
6766
]
6867
[[tool.hatch.envs.hatch-test.matrix]]
6968
python = ["3.13", "3.8", "3.7"]

0 commit comments

Comments
 (0)