Skip to content

Commit aa0d989

Browse files
Dependencies: Pin dependencies to a specific version (#77)
1 parent 27759d9 commit aa0d989

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

hatch.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ packages = ["src/pyawaitable"]
88
only-include = ["src/pyawaitable", "include/", "src/_pyawaitable"]
99

1010
[build.targets.wheel.hooks.autorun]
11-
dependencies = ["hatch-autorun"]
11+
dependencies = ["hatch-autorun~=1.1"]
1212
code = """
1313
import pyawaitable
1414
import os
@@ -18,10 +18,10 @@ os.environ['PYAWAITABLE_INCLUDE'] = pyawaitable.include(suppress_error=True)
1818

1919
[build.hooks.custom]
2020
enable-by-default = true
21-
dependencies = ["typing_extensions"]
21+
dependencies = ["typing_extensions~=4.14"]
2222

2323
[envs.hatch-test]
24-
dependencies = ["pyawaitable_test @ {root:uri}/tests", "pytest"]
24+
dependencies = ["pyawaitable_test @ {root:uri}/tests", "pytest~=8.4"]
2525
default-args = ["--verbose"]
2626

2727
[[envs.hatch-test.matrix]]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["hatch", "hatchling"]
2+
requires = ["hatch~=1.14", "hatchling~=1.27"]
33
build-backend = "hatchling.build"
44

55
[project]

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Requirements for Netlify
2-
mkdocs
3-
pymdown-extensions
2+
mkdocs~=1.6
3+
pymdown-extensions~=10.15

0 commit comments

Comments
 (0)