Skip to content

Commit c133065

Browse files
authored
[maint] Restrict to <3.14 because cupy is not fully supported for 3.14 (#49)
* Restrict to <3.14 because cupy is not fully supported for 3.14 * push 0.9.7
1 parent d4a0d7b commit c133065

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ check-system-dep: ## Checks if system dependencies are installed (nvcc) based on
2626
install-uv: ## Installs uv package manger
2727
@if ! command -v uv &> /dev/null; then \
2828
echo "uv not found. Installing uv..."; \
29-
curl -LsSf https://astral.sh/uv/0.6.10/install.sh | sh; \
29+
curl -LsSf https://astral.sh/uv/0.9.7/install.sh | sh; \
3030
echo "please follow the uv suggestions to update or restart your shell environment"; \
3131
fi
3232
@uv_version=$$(uv --version | awk '{print $$2}'); \
33-
if [ "$$(printf '%s\n' "0.6.10" "$$uv_version" | sort -V | head -n1)" != "0.6.10" ]; then \
33+
if [ "$$(printf '%s\n' "0.9.7" "$$uv_version" | sort -V | head -n1)" != "0.9.7" ]; then \
3434
echo "Updating uv to latest version..."; \
35-
uv self update 0.6.10; \
35+
uv self update 0.9.7; \
3636
fi
3737

3838
.PHONY: install-python-dep

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ make compile
4545
Build prerequisites:
4646
* Linux
4747
* `make`
48-
* `uv >= 0.6.10`
48+
* `uv >= 0.9.7`
4949
* `gcc >= 8`
5050
* `nvcc >= 11.0`
5151

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ maintainers = [
1717
]
1818
readme = "README.md"
1919
keywords = ['beamforming', 'delay and sum', 'ultrasound', 'python', 'cuda']
20-
requires-python = ">=3.9,<4.0"
20+
requires-python = ">=3.9,<3.14"
2121
classifiers = [
2222
"Intended Audience :: Developers",
2323
"Programming Language :: Python",

uv.lock

Lines changed: 12 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)