Skip to content

Commit

Permalink
Ensure only one version of pyo3-stub-gen-derive is used in the project
Browse files Browse the repository at this point in the history
  • Loading branch information
gsleap committed Nov 12, 2024
1 parent e8dfe04 commit d1ceae4
Show file tree
Hide file tree
Showing 2 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.8.1 12-Nov-2024

* Ensure only one version of pyo3-stub-gen-derive is used in the project.

## 1.8.0 11-Nov-2024

* mwalib now will detect and raise an error (`MwalibError::Fits.CfitsioIsNotReentrant`) if the CFITSIO library that mwalib is linked with has been built without the `-D_REENTRANT` directive (github issue #82).
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwalib"
version = "1.8.0"
version = "1.8.1"
homepage = "https://github.com/MWATelescope/mwalib"
repository = "https://github.com/MWATelescope/mwalib"
readme = "README.md"
Expand Down Expand Up @@ -57,7 +57,7 @@ pyo3 = { version = "~0.22", features = ["chrono", "extension-module", "macros"],
# pyo3-stub-gen = { version = "~0.6", optional = true }
# The below pyo3-stub-gen branch has not been merged with main as of 8-Nov-2024. once it has been it should be fine to go back to using the main branch again.
pyo3-stub-gen = { branch = "chrono_feature", optional = true, git = "https://github.com/ThatOneShortGuy/pyo3-stub-gen" }
pyo3-stub-gen-derive = { version = "~0.6", optional = true }
pyo3-stub-gen-derive = { branch = "chrono_feature", optional = true, git = "https://github.com/ThatOneShortGuy/pyo3-stub-gen" }

# "examples" feature.
clap = { version = "~4.1", features = ["derive"], optional = true }
Expand Down

0 comments on commit d1ceae4

Please sign in to comment.