Skip to content

Commit

Permalink
Removed error-inducing, unneeded python_version requirement from the …
Browse files Browse the repository at this point in the history
…[build-system] requires setting in pyproject.toml
  • Loading branch information
gsleap committed Mar 12, 2024
1 parent e4461e4 commit 9c70d8b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Changes in each release are listed below.

## 1.2.3 12-Mar-2024

* Removed error-inducing, unneeded `python_version` requirement from the `[build-system]` `requires` setting.

## 1.2.2 12-Mar-2024

* Explictly typed the buffer_ptr to be `signed char*` instead of the ambiguous `char*` in FFI VoltageContext read methods to fix portability issue with Arm64 platform. Fixes #67.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwalib"
version = "1.2.2"
version = "1.2.3"
homepage = "https://github.com/MWATelescope/mwalib"
repository = "https://github.com/MWATelescope/mwalib"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies = ["numpy"]
"Source" = "https://github.com/MWATelescope/mwalib"

[build-system]
requires = ["setuptools", "wheel", "python_version>=3.7"]
requires = ["setuptools", "wheel"]
build-backend = "maturin"

[tool.maturin]
Expand Down

0 comments on commit 9c70d8b

Please sign in to comment.