Skip to content

Commit 1433930

Browse files
committed
Merge branch 'hyperparametertuning' of https://github.com/benvanwerkhoven/kernel_tuner into hyperparametertuning
2 parents cc19515 + 23f557f commit 1433930

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
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 & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ kernel_tuner = "kernel_tuner.interface:entry_point"
6262
python = ">=3.10,<3.15" # NOTE when changing the supported Python versions, also change the test versions in the noxfile
6363
numpy = "^1.26.0" # Python 3.12 requires numpy at least 1.26
6464
scipy = ">=1.14.1"
65-
botorch = ">=0.12.0"
6665
packaging = "*" # required by file_utils
6766
jsonschema = "*"
6867
python-constraint2 = "^2.1.0"
@@ -92,7 +91,7 @@ matplotlib = { version = "^3.5.0", optional = true }
9291
cuda = ["pycuda", "nvidia-ml-py", "pynvml"]
9392
opencl = ["pyopencl"]
9493
cuda_opencl = ["pycuda", "pyopencl"]
95-
hip = ["hip-python"]
94+
hip = ["hip-python-fork"]
9695
tutorial = ["jupyter", "matplotlib", "nvidia-ml-py"]
9796

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

0 commit comments

Comments
 (0)