2024-11-11 08:29:31 by Thomas Klausner | Files touched by this commit (862) |
Log message:
py-*: remove unused tool dependency
py-setuptools includes the py-wheel functionality nowadays
|
2024-10-03 10:41:44 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-setuptools-rust: updated to 1.10.2
1.10.2 (2024-10-02)
Fixed
- Fix deprecation warning from use of `wheel.bdist_wheel`.
|
2024-08-05 07:37:32 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-setuptools-rust: updated to 1.10.1
1.10.1 (2024-08-04)
Fixed
- Fix regression in 1.10.0 where editable builds would be built in release mode
1.10.0 (2024-08-03)
Packaging
- Extend macOS build flags to iOS, tvOS and watchOS.
- Support Python 3.13.
Changed
- Add `SETUPTOOLS_RUST_PEP517_USE_BASE_PYTHON` environment variable to use the \
base interpreter path when running inside a virtual environment to avoid \
recompilation when switching between virtual environments.
- Delay import of dependencies until use to avoid import errors during a \
partially complete install when multiple packages are installing at once.
- Deprecate `--build-temp` argument to `build_rust` command (it does nothing).
|
2024-02-25 16:22:28 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
py-setuptools-rust: update to 1.9.0.
## 1.9.0 (2024-02-24)
### Changed
- Deprecate `py_limited_api` option to `RustExtension` in favour
of always using `"auto"` to configure this from `bdist_wheel`.
|
2023-10-31 21:22:54 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-setuptools-rust: updated to 1.8.1
1.8.1 (2023-10-30)
Fixed
- Fix regression in `install_extension` crashing since 1.8.0.
|
2023-10-28 21:57:26 by Thomas Klausner | Files touched by this commit (516) | |
Log message:
python/wheel.mk: simplify a lot, and switch to 'installer' for installation
This follows the recommended bootstrap method (flit_core, build, installer).
However, installer installs different files than pip, so update PLISTs
for all packages using wheel.mk and bump their PKGREVISIONs.
|
2023-10-26 15:08:49 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-setuptools-rust: updated to 1.8.0
1.8.0 (2023-10-26)
Packaging
- Drop support for Python 3.7.
- Remove direct imports from `pkg_resources`.
Added
- Add support for setting a custom cargo profile with the \
`SETUPTOOLS_RUST_CARGO_PROFILE` environment variable.
|
2023-08-23 07:32:00 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-setuptools-rust: updated to 1.7.0
1.7.0 (2023-08-22)
Packaging
- Remove direct imports from `distutils`.
- Include `py.typed` when packaging to denote that setuptools-rust includes type \
hints.
Added
- Add support for `pyproject.toml` configuration using `[tool.setuptools-rust]` \
options.
Fixed
- Fix `plat_name` handling in the case `bdist_wheel.plat_name` is set via \
configuration file (e.g., `setup.cfg`).
|
2023-06-06 14:42:56 by Taylor R Campbell | Files touched by this commit (1319) |
Log message:
Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/.
Almost all uses, if not all of them, are wrong, according to the
semantics of BUILD_DEPENDS (packages built for target available for
use _by_ tools at build-time) and TOOL_DEPEPNDS (packages built for
host available for use _as_ tools at build-time).
No change to BUILD_DEPENDS as used correctly inside buildlink3.
As proposed on tech-pkg:
https://mail-index.netbsd.org/tech-pkg/2023/06/03/msg027632.html
|
2023-04-30 20:27:26 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
py-setuptools-rust: update to 1.6.0.
## 1.6.0 (2023-04-27)
### Changed
- Prefer passing `--crate-type` option to cargo if "toolchain >= \
1.64". [#322](https://github.com/PyO3/setuptools-rust/pull/322)
### Fixed
- Fix a bug where rebuilding the library would cause any running processes using \
it to segfault. [#295](https://github.com/PyO3/setuptools-rust/pull/295)
- Fix `setup.cfg` format for compatibility with "poetry==1.4.0". \
[#319](https://github.com/PyO3/setuptools-rust/pull/319)
|