Skip to content

Commit 23f557f

Browse files
committed
Merge branch 'searchspace_experiments' into hyperparametertuning
2 parents 6633bed + 1e05d1a commit 23f557f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def check_development_environment(session: Session) -> None:
8484
session.log("Skipping development environment check on the GitHub Actions runner, as this is always up to date.")
8585
return None
8686
output: str = session.run("poetry", "install", "--sync", "--dry-run", "--with", "test", silent=True, external=True)
87-
match = re.search(r"Package operations: (\d+) installs, (\d+) updates, (\d+) removals, \d+ skipped", output)
87+
match = re.search(r"Package operations: (\d+) (?:install|installs), (\d+) (?:update|updates), (\d+) (?:removal|removals), \d+ skipped", output)
8888
assert match is not None, f"Could not check development environment, reason: {output}"
8989
groups = match.groups()
9090
installs, updates, removals = int(groups[0]), int(groups[1]), int(groups[2])

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ matplotlib = { version = "^3.5.0", optional = true }
9191
cuda = ["pycuda", "nvidia-ml-py", "pynvml"]
9292
opencl = ["pyopencl"]
9393
cuda_opencl = ["pycuda", "pyopencl"]
94-
hip = ["hip-python"]
94+
hip = ["hip-python-fork"]
9595
tutorial = ["jupyter", "matplotlib", "nvidia-ml-py"]
9696

9797
# ATTENTION: if anything is changed here, run `poetry update` and `poetry export --with docs --without-hashes --format=requirements.txt --output doc/requirements.txt`
@@ -147,4 +147,4 @@ select = [
147147
"D", # pydocstyle,
148148
]
149149
[tool.ruff.pydocstyle]
150-
convention = "google"
150+
convention = "google"

0 commit comments

Comments
 (0)