1
0

- Update to v0.14.0:

* Breaking Change: Remove support for specifying python package
  metadata in `Cargo.toml`
  Python package metadata should be specified in the `project`
  section of `pyproject.toml` instead as PEP 621 specifies.
  gh#PyO3/maturin#1200
* Initial support for shipping bin targets as wasm32-wasi binaries
  that are run through wasmtime
  Note that wasmtime currently only support the five most popular
  platforms and that wasi binaries have restrictions when
  interacting with the host.
  Usage is by setting `--target wasm32-wasi`.
  gh#PyO3/maturin#1107
* Add support for python first `src` project layout
  gh#PyO3/maturin#1185
* Add `--src` option to generate src layout for mixed Python/Rust
  projects
  gh#PyO3/maturin#1189
* Add Python metadata support for `license-file` field of
  `Cargo.toml`
  gh#PyO3/maturin#1195
* Upgrade to clap 4.0
  This bumps MSRV to 1.61.0.
  gh#PyO3/maturin#1197
* Remove `workspace.members` in `Cargo.toml` from sdist if there
  isn't any path dependency
  in #[1227](https://github.com/PyO3/maturin/pull/1227)
* Fix auditwheel `libpython` check on Python 3.7 and older
  versions
  gh#PyO3/maturin#1229

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-maturin?expand=0&rev=43
This commit is contained in:
Mia Herkt 2022-11-20 07:47:42 +00:00 committed by Git OBS Bridge
parent a83171ba6c
commit bdb34ca50d
5 changed files with 68 additions and 7 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:df649c77dc9da2182322764fdaa265ef4e2fd74c87d9022e3463e130e5d2c536
size 153900

3
maturin-0.14.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:503e82c4cb1d82751d9372f3564b153f979db403faecd73cd680ec160bf8c10f
size 168586

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Sun Nov 20 07:40:57 UTC 2022 - Mia Herkt <mia@0x0.st>
- Update to v0.14.0:
* Breaking Change: Remove support for specifying python package
metadata in `Cargo.toml`
Python package metadata should be specified in the `project`
section of `pyproject.toml` instead as PEP 621 specifies.
gh#PyO3/maturin#1200
* Initial support for shipping bin targets as wasm32-wasi binaries
that are run through wasmtime
Note that wasmtime currently only support the five most popular
platforms and that wasi binaries have restrictions when
interacting with the host.
Usage is by setting `--target wasm32-wasi`.
gh#PyO3/maturin#1107
* Add support for python first `src` project layout
gh#PyO3/maturin#1185
* Add `--src` option to generate src layout for mixed Python/Rust
projects
gh#PyO3/maturin#1189
* Add Python metadata support for `license-file` field of
`Cargo.toml`
gh#PyO3/maturin#1195
* Upgrade to clap 4.0
This bumps MSRV to 1.61.0.
gh#PyO3/maturin#1197
* Remove `workspace.members` in `Cargo.toml` from sdist if there
isn't any path dependency
in #[1227](https://github.com/PyO3/maturin/pull/1227)
* Fix auditwheel `libpython` check on Python 3.7 and older
versions
gh#PyO3/maturin#1229
* Use generic tags when
`sys.implementation.name` != `platform.python_implementation()`
Fixes the compatibility tags for Pyston.
gh#PyO3/maturin#1232
* Set default macOS deployment target version if
`MACOSX_DEPLOYMENT_TARGET` isn't specified
gh#PyO3/maturin#1251
* Add support for 32-bit x86 FreeBSD target
gh#PyO3/maturin#1254
* Add `[tool.maturin.include]` and `[tool.maturin.exclude]` and
deprecate `[tool.maturin.sdist-include]`
gh#PyO3/maturin#1255
* Ignore sdist tar ball instead of error out
gh#PyO3/maturin#1259
* Add support for `uniffi` bindings
gh#PyO3/maturin#1275
-------------------------------------------------------------------
Thu Nov 10 09:11:29 UTC 2022 - Mia Herkt <mia@0x0.st>
- Update to v0.13.7:
* Fix macOS LC_ID_DYLIB for abi3 wheels
gh#PyO3/maturin#1208
* Pass --locked to Cargo when bootstrap from sdisFix build for Python 3.11 on Windows
gh#PyO3/maturin#1222
* Fix build for Python 3.11 on Windows
gh#PyO3/maturin#1222
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 24 12:24:47 UTC 2022 - Matej Cepl <mcepl@suse.com> Mon Oct 24 12:24:47 UTC 2022 - Matej Cepl <mcepl@suse.com>

View File

@ -17,7 +17,7 @@
Name: python-maturin Name: python-maturin
Version: 0.13.6 Version: 0.14.0
Release: 0 Release: 0
Summary: Rust/Python Interoperability Summary: Rust/Python Interoperability
License: Apache-2.0 OR MIT License: Apache-2.0 OR MIT
@ -71,7 +71,7 @@ sed -i '1{/env python/d}' maturin/__init__.py
%files %{python_files} %files %{python_files}
%license license-apache license-mit %license license-apache license-mit
%doc Changelog.md Readme.md %doc Changelog.md README.md
%python_alternative %{_bindir}/maturin %python_alternative %{_bindir}/maturin
%{python_sitearch}/maturin %{python_sitearch}/maturin
%{python_sitearch}/maturin-%{version}*-info %{python_sitearch}/maturin-%{version}*-info

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:367e7c8e01a6d8eeab70942122deb1ba2701f09be8f425f61e6e26f577067e7f oid sha256:7974350378198f579ea73ff5dc43c00f8db586e0b739f620ae0cae59e09d7840
size 28596660 size 33486316