Skip to content

Commit

Permalink
Incorrect fix for issue #55
Browse files Browse the repository at this point in the history
The wrong reference to `setuptools` in `pyproject.toml` had been updated.
  • Loading branch information
philthompson10 committed Dec 9, 2024
1 parent 33c3c9a commit 0e6173c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# The project configuration for sip.

[build-system]
requires = ["setuptools>=69.5", "setuptools_scm>=8"]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
Expand All @@ -12,7 +12,7 @@ name = "sip"
description = "A Python bindings generator for C/C++ libraries"
readme = "README.md"
urls.homepage = "https://github.com/Python-SIP/sip"
dependencies = ["packaging", "setuptools", "tomli; python_version<'3.11'"]
dependencies = ["packaging", "setuptools>=69.5", "tomli; python_version<'3.11'"]
requires-python = ">=3.9"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: BSD License"]
Expand Down

0 comments on commit 0e6173c

Please sign in to comment.