You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pyopencl = { version = "*", optional = true } # Attention: if pyopencl is changed here, also change `session.install("pyopencl")` in the Noxfile
82
84
# HIP
83
-
hip-python = { version = "*", optional = true }
85
+
hip-python-fork = { version = "*", optional = true }
84
86
# Tutorial (for the notebooks used in the examples)
85
87
jupyter = { version = "^1.0.0", optional = true }
86
88
matplotlib = { version = "^3.5.0", optional = true }
@@ -107,18 +109,19 @@ markupsafe = "^2.0.1" # TODO why do we need markupsafe here?
107
109
# sphinx-autodoc-typehints = "^1.24.0"
108
110
109
111
# ATTENTION: if anything is changed here, run `poetry update`
110
-
# Please also run `poetry export -f requirements.txt --output doc/requirements_test.txt --with test`
112
+
# Please also run `poetry export -f requirements.txt --output docs/requirements_test.txt --with test`
111
113
[tool.poetry.group.test]
112
114
optional = true
113
115
[tool.poetry.group.test.dependencies]
114
116
pytest = "^8.2.0"
117
+
pytest-timeout = "^2.3.1"
115
118
pytest-cov = "^5.0.0"
116
119
mock = "^5.1.0"
117
120
nox = "^2024.4.15"
118
121
nox-poetry = "^1.0.3"
119
122
ruff = "^0.4.4"
120
123
pep440 = "^0.1.2"
121
-
tomli = "^2.0.1"# held back by Python <= 3.10, can be replaced by built-in [tomllib](https://docs.python.org/3.11/library/tomllib.html) from Python 3.11 onwards
124
+
tomli = "^2.0.1"# held back by Python <= 3.10, can be replaced by built-in [tomllib](https://docs.python.org/3.11/library/tomllib.html) from Python 3.11 onwards
122
125
123
126
# development dependencies are unused for now, as this is already covered by test and docs
124
127
# # ATTENTION: if anything is changed here, run `poetry update`
0 commit comments