Skip to content

Commit

Permalink
V0.2.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
David-OConnor committed Dec 21, 2019
1 parent ea47986 commit 0bbe507
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 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.

2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pyflow"
version = "0.2.3"
version = "0.2.4"
authors = ["David O'Connor <david.alan.oconnor@gmail.com>"]
description = "A modern Python installation and dependency manager"
license = "MIT"
Expand Down
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -26,19 +26,19 @@ and [Pep 518 (pyproject.toml)](https://www.python.org/dev/peps/pep-0518/), and s

## Installation
- **Windows** - Download and run
[this installer](https://github.com/David-OConnor/pyflow/releases/download/0.2.3/pyflow-0.2.3-x86_64.msi).
[this installer](https://github.com/David-OConnor/pyflow/releases/download/0.2.4/pyflow-0.2.4-x86_64.msi).
Or, if you have [Scoop](https://scoop.sh) installed, run `scoop install pyflow`.

- **Ubuntu, or another Os that uses Snap** - Run `snap install pyflow --classic`.

- **Ubuntu or Debian without Snap** - Download and run
[this deb](https://github.com/David-OConnor/pyflow/releases/download/0.2.3/pyflow_0.2.3_amd64.deb).
[this deb](https://github.com/David-OConnor/pyflow/releases/download/0.2.4/pyflow_0.2.4_amd64.deb).

- **Fedora, CentOs, RedHat, or older versions of SUSE** - Download and run
[this rpm](https://github.com/David-OConnor/pyflow/releases/download/0.2.3/pyflow-0.2.3.x86_64.rpm).
[this rpm](https://github.com/David-OConnor/pyflow/releases/download/0.2.4/pyflow-0.2.4.x86_64.rpm).

- **A different Linux distro** - Download this
[standalone binary](https://github.com/David-OConnor/pyflow/releases/download/0.2.3/pyflow)
[standalone binary](https://github.com/David-OConnor/pyflow/releases/download/0.2.4/pyflow)
and place it somewhere accessible by the PATH. For example, `/usr/bin`.

- **Mac** - Install Rust: `curl https://sh.rustup.rs -sSf | sh`, then run
Expand Down Expand Up @@ -184,7 +184,7 @@ Example contents:
[tool.pyflow]
py_version = "3.7"
name = "runcible"
version = "0.2.3"
version = "0.2.4"
authors = ["John Hackworth <jhackworth@vic.org>"]


Expand Down Expand Up @@ -367,7 +367,7 @@ In order to build and publish your project, additional info is needed in
[tool.pyflow]
name = "everythingkiller"
py_version = "3.6"
version = "0.2.3"
version = "0.2.4"
authors = ["Fraa Erasmas <raz@edhar.math>"]
description = "Small, but packs a punch!"
homepage = "https://everything.math"
Expand All @@ -390,7 +390,7 @@ activate = "jeejah:activate"

[tool.pyflow.dependencies]
numpy = "^1.16.4"
manimlib = "0.2.3"
manimlib = "0.2.4"
ipython = {version = "^7.7.0", extras=["qtconsole"]}


Expand Down
2 changes: 1 addition & 1 deletion snapcraft.yaml
@@ -1,5 +1,5 @@
name: pyflow
version: 0.2.3
version: 0.2.4
license: MIT # todo: This appears to cause the `snapcraft` command to fail.
summary: A Python installation and dependency manager.
description: |
Expand Down
1 change: 1 addition & 0 deletions src/install.rs
Expand Up @@ -293,6 +293,7 @@ pub fn download_and_install_package(
replace_distutils(&extracted_parent.join("setup.py"));

// Build a wheel from source.
println!("EX PAR: {:#?} bin: {:#?}", &extracted_parent, &paths.bin);
Command::new(paths.bin.join("python"))
.current_dir(&extracted_parent)
.args(&["setup.py", "bdist_wheel"])
Expand Down

0 comments on commit 0bbe507

Please sign in to comment.