Accepting request 942187 from devel:languages:python
- Update to 0.12.5 * Fix docs for new and init commands in maturin --help gh#PyO3/maturin#734 * Fix undefined auditwheel policy panic gh#PyO3/maturin#740 * Fix upload::canonicalize_name() regex subst gh#PyO3/maturin#741 * Bump serde from 1.0.130 to 1.0.131 gh#PyO3/maturin#745 * Bump sha2 from 0.9.8 to 0.10.0 gh#PyO3/maturin#746 * Add Cargo.lock to sdist when --locked or --frozen specified gh#PyO3/maturin#749 * Implement auditwheel repair with patchelf gh#PyO3/maturin#742 * Support pyo3 abi3-py310 feature gh#PyO3/maturin#750 - Changes in 0.12.4: * Bump anyhow from 1.0.50 to 1.0.51 gh#PyO3/maturin#717 * init: new command similar to cargo init gh#PyO3/maturin#719 * Don't package non-path-dep crates in sdist for workspaces gh#PyO3/maturin#720 * Update keyring to 1.0.0 gh#PyO3/maturin#721 * Reorganize upload feature gh#PyO3/maturin#726 * Allow pip warnings in maturin develop command gh#PyO3/maturin#732 * Add a Python import hook gh#PyO3/maturin#729 - Changes in 0.12.3: * Use platform tag from sysconfig.platform on non-portable Linux gh#PyO3/maturin#709 * Warn missing cffi package dependency gh#PyO3/maturin#711 * new: include function example for PyO3 bindings gh#PyO3/maturin#713 - Changes in 0.12.2: * Add a maturin new command for bootstrapping new projects gh#PyO3/maturin#705 * Add docs for maturin new command gh#PyO3/maturin#707 - Changes in 0.12.1: * Add support for cross compiling PyPy wheels gh#PyO3/maturin#687 * Add a runnable field to PythonInterpreter gh#PyO3/maturin#691 - Changes in 0.12.0: * Add PEP 660 support gh#PyO3/maturin#648 * Refactor develop command to act identical to PEP 660 editable wheels gh#PyO3/maturin#653 * Bump anyhow from 1.0.44 to 1.0.45 gh#PyO3/maturin#664 * Upgrade pyo3 to 0.15 in test crates gh#PyO3/maturin#665 * Fix typos discovered by codespell gh#PyO3/maturin#666 * Add mdbook based user guide gh#PyO3/maturin#658 * Allow building for non-abi3 pypy wheels when the abi3 feature is enabled gh#PyO3/maturin#678 * Bump serde_json from 1.0.69 to 1.0.70 gh#PyO3/maturin#683 * Bump keyring from 0.10.1 to 0.10.4 gh#PyO3/maturin#682 - Changes in 0.11.5: * Fix typo in Readme gh#PyO3/maturin#638 * Re-export __doc__ in __init__.py for pure Rust project gh#PyO3/maturin#639 * Fix musllinux auditwheel wrongly detects libc forbidden link gh#PyO3/maturin#643 * Fix Win32 Conda Python Interpreters by @formlogic-robert in gh#PyO3/maturin#644 * Upgrade python-pkginfo to 0.5.0 gh#PyO3/maturin#645 * Fix cross compilation for Python 3.10 gh#PyO3/maturin#646 OBS-URL: https://build.opensuse.org/request/show/942187 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-maturin?expand=0&rev=8
This commit is contained in:
commit
01318238e7
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b1cd9c35c911a11532c1182d35041cda0602f470cab8d76124ca049c8bba896a
|
||||
size 468842
|
3
maturin-0.12.5.tar.gz
Normal file
3
maturin-0.12.5.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1d5fce5b4c39db9e6557424b4ae3b885e3affd5cd97e6d6ab88a40e0aa2d1535
|
||||
size 138547
|
@ -1,3 +1,90 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 23 06:19:18 UTC 2021 - Mia Herkt <mia@0x0.st>
|
||||
|
||||
- Update to 0.12.5
|
||||
* Fix docs for new and init commands in maturin --help
|
||||
gh#PyO3/maturin#734
|
||||
* Fix undefined auditwheel policy panic
|
||||
gh#PyO3/maturin#740
|
||||
* Fix upload::canonicalize_name() regex subst
|
||||
gh#PyO3/maturin#741
|
||||
* Bump serde from 1.0.130 to 1.0.131
|
||||
gh#PyO3/maturin#745
|
||||
* Bump sha2 from 0.9.8 to 0.10.0
|
||||
gh#PyO3/maturin#746
|
||||
* Add Cargo.lock to sdist when --locked or --frozen specified
|
||||
gh#PyO3/maturin#749
|
||||
* Implement auditwheel repair with patchelf
|
||||
gh#PyO3/maturin#742
|
||||
* Support pyo3 abi3-py310 feature
|
||||
gh#PyO3/maturin#750
|
||||
- Changes in 0.12.4:
|
||||
* Bump anyhow from 1.0.50 to 1.0.51
|
||||
gh#PyO3/maturin#717
|
||||
* init: new command similar to cargo init
|
||||
gh#PyO3/maturin#719
|
||||
* Don't package non-path-dep crates in sdist for workspaces
|
||||
gh#PyO3/maturin#720
|
||||
* Update keyring to 1.0.0
|
||||
gh#PyO3/maturin#721
|
||||
* Reorganize upload feature
|
||||
gh#PyO3/maturin#726
|
||||
* Allow pip warnings in maturin develop command
|
||||
gh#PyO3/maturin#732
|
||||
* Add a Python import hook
|
||||
gh#PyO3/maturin#729
|
||||
- Changes in 0.12.3:
|
||||
* Use platform tag from sysconfig.platform on non-portable Linux
|
||||
gh#PyO3/maturin#709
|
||||
* Warn missing cffi package dependency
|
||||
gh#PyO3/maturin#711
|
||||
* new: include function example for PyO3 bindings
|
||||
gh#PyO3/maturin#713
|
||||
- Changes in 0.12.2:
|
||||
* Add a maturin new command for bootstrapping new projects
|
||||
gh#PyO3/maturin#705
|
||||
* Add docs for maturin new command
|
||||
gh#PyO3/maturin#707
|
||||
- Changes in 0.12.1:
|
||||
* Add support for cross compiling PyPy wheels
|
||||
gh#PyO3/maturin#687
|
||||
* Add a runnable field to PythonInterpreter
|
||||
gh#PyO3/maturin#691
|
||||
- Changes in 0.12.0:
|
||||
* Add PEP 660 support
|
||||
gh#PyO3/maturin#648
|
||||
* Refactor develop command to act identical to PEP 660 editable
|
||||
wheels
|
||||
gh#PyO3/maturin#653
|
||||
* Bump anyhow from 1.0.44 to 1.0.45
|
||||
gh#PyO3/maturin#664
|
||||
* Upgrade pyo3 to 0.15 in test crates
|
||||
gh#PyO3/maturin#665
|
||||
* Fix typos discovered by codespell
|
||||
gh#PyO3/maturin#666
|
||||
* Add mdbook based user guide
|
||||
gh#PyO3/maturin#658
|
||||
* Allow building for non-abi3 pypy wheels when the abi3 feature
|
||||
is enabled
|
||||
gh#PyO3/maturin#678
|
||||
* Bump serde_json from 1.0.69 to 1.0.70
|
||||
gh#PyO3/maturin#683
|
||||
* Bump keyring from 0.10.1 to 0.10.4
|
||||
gh#PyO3/maturin#682
|
||||
- Changes in 0.11.5:
|
||||
* Fix typo in Readme
|
||||
gh#PyO3/maturin#638
|
||||
* Re-export __doc__ in __init__.py for pure Rust project
|
||||
gh#PyO3/maturin#639
|
||||
* Fix musllinux auditwheel wrongly detects libc forbidden link
|
||||
gh#PyO3/maturin#643
|
||||
* Fix Win32 Conda Python Interpreters by @formlogic-robert in
|
||||
gh#PyO3/maturin#644
|
||||
* Upgrade python-pkginfo to 0.5.0
|
||||
gh#PyO3/maturin#645
|
||||
* Fix cross compilation for Python 3.10
|
||||
gh#PyO3/maturin#646
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 5 03:04:16 UTC 2021 - William Brown <william.brown@suse.com>
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
%define skip_python2 1
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-maturin
|
||||
Version: 0.11.4
|
||||
Version: 0.12.5
|
||||
Release: 0
|
||||
Summary: Rust/Python Interoperability
|
||||
License: Apache-2.0 OR MIT
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a42126e64e8a20e8f09604be30e28ab14d3556bf4ce7943a6220e716e31469f8
|
||||
size 16934792
|
||||
oid sha256:ae3bebc229b94417ecf9e2630772a369734997b902a81bbccaad46f3f793fa5e
|
||||
size 17926376
|
||||
|
Loading…
x
Reference in New Issue
Block a user