Skip to content

Commit 7b6643b

Browse files
update to use latest version of algebraics and PyO3
1 parent 473cafe commit 7b6643b

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

Cargo.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See Notices.txt for copyright information
33
[package]
44
name = "simple-soft-float"
5-
version = "0.1.0"
5+
version = "0.2.0"
66
authors = ["Jacob Lifshay <[email protected]>"]
77
edition = "2018"
88
license = "LGPL-2.1-or-later"
@@ -26,15 +26,13 @@ num-traits = "0.2"
2626
num-rational = "0.2"
2727

2828
[dependencies.algebraics]
29-
version = ">= 0.1.2, < 0.2"
29+
version = "0.2"
3030

3131
[dependencies.once_cell]
3232
version = "1.2"
3333
optional = true
3434

3535
[dependencies.pyo3]
36-
# version = "0.9.0"
37-
git = "https://github.com/PyO3/pyo3"
38-
rev = "10999743169612e7483f484d951eca0f6723b1b0"
36+
version = "0.9.0"
3937
optional = true
4038
features = ["num-bigint"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ Add to your `Cargo.toml`:
66

77
```toml
88
[dependencies.simple-soft-float]
9-
version = "0.1"
9+
version = "0.2"
1010
```
1111

1212
## Installation for use from Python
1313

1414
Install Rust using [rustup.rs](https://rustup.rs).
1515

16-
Create CPython 3.6 to 3.7 virtualenv (not sure if 3.8 is supported yet).
16+
Create CPython 3.6 to 3.8 virtualenv.
1717

1818
Install Python bindings build tool:
1919
```bash
@@ -29,7 +29,7 @@ cd simple-soft-float
2929
Change source dir to use specific version of Rust nightly:
3030
(must be in `simple-soft-float` dir):
3131
```bash
32-
rustup override set nightly-2019-07-19
32+
rustup override set nightly-2020-01-23
3333
```
3434

3535
Build and Test (like `setup.py develop`):

0 commit comments

Comments
 (0)