Skip to content

Commit

Permalink
Added "auto-initialize" feature
Browse files Browse the repository at this point in the history
+ Changed license prop in Cargo.toml
+ Bumped version to 1.0.1
  • Loading branch information
Genarito committed Sep 12, 2024
1 parent ba39392 commit 622089a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ description = "Computes efficiently the correlation (Pearson, Spearman or Kendal
documentation = "https://docs.rs/ggca/"
edition = "2018"
keywords = ["mRNA", "expression", "modulation", "correlation", "p-value"]
license = "GPL-3.0"
license = "MIT"
name = "ggca"
version = "1.0.0"
version = "1.0.1"
repository = "https://github.com/jware-solutions/ggca"
readme = "README.md"
exclude = [".*", "*.tar.gz", "*.sh"]
Expand All @@ -24,7 +24,7 @@ fast-float = "0.2"
itertools = "0.9.0"
lazy_static = "1.4.0"
log = "0.4.14"
pyo3 = { version = "0.22.2", features = ["extension-module"] }
pyo3 = { version = "0.22.2", features = ["extension-module", "auto-initialize"] }
rayon = "1.10.0"
serde = {version = "1.0.14", default-features = false}
serde_derive = {version = "1.0.14", default-features = false}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ except ggca.GGCAError as ex:

### Rust

1. Add crate to `Cargo.toml`: `ggca = { version = "1.0.0", default-features = false }`
1. Add crate to `Cargo.toml`: `ggca = { version = "1.0.1", default-features = false }`
1. Create an analysis and run it:

```rust
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//!
//! ## Installation
//!
//! 1. Add crate to `Cargo.toml`: `ggca = "1.0.0"`
//! 1. Add crate to `Cargo.toml`: `ggca = "1.0.1"`
//!
//!
//! ## Usage
Expand Down

0 comments on commit 622089a

Please sign in to comment.