From e915fa4a151ea9a6faf09583ffb44ab57fa422fd Mon Sep 17 00:00:00 2001 From: yozu Date: Wed, 1 Mar 2023 21:56:42 +0900 Subject: [PATCH 1/2] Fix setup.cfg --- setup.cfg | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 291fdd59..46e56e8e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,7 +27,10 @@ classifiers = [options] packages = setuptools_rust zip_safe = True -install_requires = setuptools>=62.4; semantic_version>=2.8.2,<3; typing_extensions>=3.7.4.3 +install_requires = + setuptools>=62.4 + semantic_version>=2.8.2,<3 + typing_extensions>=3.7.4.3 setup_requires = setuptools>=62.4 python_requires = >=3.7 From 1912709164c1df7dca21a4564f34dd0b1ae03b90 Mon Sep 17 00:00:00 2001 From: yozu Date: Sun, 5 Mar 2023 23:29:43 +0900 Subject: [PATCH 2/2] update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9918498a..4ae33e9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## Unreleased ### 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) ## 1.5.2 (2022-09-19) ### Fixed