Skip to content

Commit

Permalink
pyo3 and rust updates
Browse files Browse the repository at this point in the history
  • Loading branch information
cgevans committed Jul 21, 2024
1 parent aad2764 commit 4b02316
Show file tree
Hide file tree
Showing 6 changed files with 192 additions and 188 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools_scm[toml] wheel setuptools
python -m pip install --upgrade .[tests]
python -m pip install --upgrade -e .[tests]
- name: Test with pytest
run: |
python -m pytest --cov --cov-report=xml
Expand Down
6 changes: 3 additions & 3 deletions accel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stickydesign-accel"
version = "0.9.0"
version = "0.9.1"
edition = "2021"

[lib]
Expand All @@ -13,6 +13,6 @@ rayon = ["ndarray/rayon"]

[dependencies]
ndarray = {version = "0.15", features = ["approx", "blas", "serde"]}
numpy = {version = "0.20"}
pyo3 = {version = "0.20", features = ["extension-module"]}
numpy = {version = "0.21"}
pyo3 = {version = "0.21", features = ["extension-module", "experimental-declarative-modules"]}

2 changes: 1 addition & 1 deletion accel/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["maturin>=0.13,<0.14"]
requires = ["maturin~=1.5"]
build-backend = "maturin"

[project]
Expand Down
Loading

0 comments on commit 4b02316

Please sign in to comment.