Skip to content

Commit 117fd0f

Browse files
committed
Update version #
Update version of pyo3 that is used to a more recent version
1 parent 091d367 commit 117fd0f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[package]
88
name = "MathCatForPython"
9-
version = "0.6.3"
9+
version = "0.6.5"
1010
authors = ["Neil Soiffer <soiffer@alum.mit.edu>"]
1111
edition = "2018"
1212
resolver = "2" # allows different build dependency features
@@ -21,18 +21,18 @@ name = "libmathcat_py"
2121
crate-type = ["cdylib"]
2222

2323
[dependencies.mathcat]
24-
version = "0.6.3"
24+
version = "0.6.5"
2525
# for testing MathCAT without having to publish a new version (change two occurences)
2626
# path = "../MathCAT/"
27-
# features = ["include-zip"] # for building, we want the zip files so we can include them separately
27+
features = ["include-zip"] # for building, we want the zip files so we can include them separately
2828

2929
[dependencies.pyo3]
30-
version = "0.15.1"
30+
version = "0.22"
3131
features = ["extension-module", "abi3"]
3232

3333
[build-dependencies]
3434
zip = { version = "2.1", default-features = false, features = ["bzip2"] }
35-
mathcat = { version = "0.6.3", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
35+
mathcat = {version = "0.6.5", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
3636
# mathcat = { path = "../MathCAT/", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
3737
# for testing MathCAT without having to publish a new version (change two occurences)
3838

0 commit comments

Comments
 (0)