From 9bfdc412b261e9d89111be6904cdf64f61d6c1e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Sep 2024 11:41:40 +0000 Subject: [PATCH 1/3] Bump cffi from 1.16.0 to 1.17.0 in /requirements Bumps [cffi](https://github.com/python-cffi/cffi) from 1.16.0 to 1.17.0. - [Release notes](https://github.com/python-cffi/cffi/releases) - [Commits](https://github.com/python-cffi/cffi/compare/v1.16.0...v1.17.0) --- updated-dependencies: - dependency-name: cffi dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/base.txt b/requirements/base.txt index c6fb97d..2369f27 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,5 +1,5 @@ # What we want -cffi==1.16.0 +cffi==1.17.0 # What we need pycparser==2.22 From 4fbde817225e31c2c5c1cffc7ed54aa68b02d964 Mon Sep 17 00:00:00 2001 From: Bo Bayles Date: Wed, 4 Sep 2024 13:50:00 -0500 Subject: [PATCH 2/3] Limit setuptools to prevent Windows cibuildwheel issue --- requirements/development.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/development.txt b/requirements/development.txt index 662427b..4aefedb 100644 --- a/requirements/development.txt +++ b/requirements/development.txt @@ -1,7 +1,7 @@ build coverage ruff -setuptools +setuptools<74 Sphinx twine urllib3 From f9f84d3c8840e9cf9d050bc3049be2290b44f922 Mon Sep 17 00:00:00 2001 From: Bo Bayles Date: Wed, 4 Sep 2024 13:53:34 -0500 Subject: [PATCH 3/3] Downgrade setuptools in pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1aa0771..d0c0c78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["cffi", "setuptools", "urllib3", "wheel"] +requires = ["cffi", "setuptools < 74", "urllib3", "wheel"] build-backend = "setuptools.build_meta" [project]