Skip to content

Commit

Permalink
Prepare 0.8.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
konstin committed Apr 30, 2020
1 parent d55594b commit 6a97c84
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 95 deletions.
117 changes: 43 additions & 74 deletions Cargo.lock

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

38 changes: 19 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["konstin <konstin@mailbox.org>"]
name = "maturin"
version = "0.8.0"
version = "0.8.1"
description = "Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages"
exclude = ["test-crates/**/*", "sysconfig/*", "test-data/*", "ci/*", "tests/*"]
readme = "Readme.md"
Expand Down Expand Up @@ -34,34 +34,34 @@ name = "maturin"
[dependencies]
base64 = "0.12.0"
bytesize = "1.0.0"
glob = "0.3"
glob = "0.3.0"
cargo_metadata = "0.9.1"
cbindgen = { version = "0.13.1", default-features = false }
cbindgen = { version = "0.14.1", default-features = false }
digest = { version = "0.8.1", features = ["std"] }
failure = "0.1.6"
flate2 = "1.0.12"
goblin = "0.2.0"
human-panic = { version = "1.0.1", optional = true }
keyring = { version = "0.8.0", optional = true }
failure = "0.1.7"
flate2 = "1.0.14"
goblin = "0.2.1"
human-panic = { version = "1.0.3", optional = true }
keyring = { version = "0.9.0", optional = true }
platform-info = "0.0.1"
platforms = "0.2.1"
pretty_env_logger = { version = "0.4.0", optional = true }
regex = "1.2.1"
reqwest = { version = "0.10.3", optional = true, default-features = false, features = ["blocking"]}
rpassword = { version = "4.0.1", optional = true }
serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0.42"
sha2 = "0.8.0"
regex = "1.3.7"
reqwest = { version = "0.10.4", optional = true, default-features = false, features = ["blocking"] }
rpassword = { version = "4.0.5", optional = true }
serde = { version = "1.0.106", features = ["derive"] }
serde_json = "1.0.52"
sha2 = "0.8.1"
shlex = "0.1.1"
structopt = "0.3.5"
structopt = "0.3.14"
tar = "0.4.26"
tempfile = "3.1.0"
toml = "0.5.5"
walkdir = "2.2.8"
zip = "0.5.2"
toml = "0.5.6"
walkdir = "2.3.1"
zip = "0.5.5"

[dev-dependencies]
indoc = "0.3.3"
indoc = "0.3.5"

[features]
default = ["auditwheel", "log", "upload", "rustls"]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Workaround to bootstrap maturin on non-manylinux platforms
[build-system]
requires = ["setuptools~=41.2.0", "wheel~=0.33.6"]
requires = ["setuptools~=41.2.0", "wheel~=0.33.6", "toml~=0.10.0"]
build-backend = "setuptools.build_meta"

[tool.maturin]
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import subprocess
import sys

import toml
from setuptools import setup
from setuptools.command.install import install

Expand Down Expand Up @@ -74,6 +75,9 @@ def run(self):
with open("Readme.md") as fp:
long_description = fp.read()

with open("Cargo.toml") as fp:
version = toml.load(fp)["package"]["version"]

setup(
name="maturin",
author="konstin",
Expand All @@ -83,7 +87,7 @@ def run(self):
"python packages",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.8.0",
version=version,
license="MIT OR Apache-2.0",
python_requires=">=3.5",
cmdclass={"install": PostInstallCommand, "bdist_wheel": bdist_wheel},
Expand Down

0 comments on commit 6a97c84

Please sign in to comment.