Skip to content

Commit d53d99f

Browse files
committed
fixate setuptools version and try to see if we can support 3.8
1 parent 8df2788 commit d53d99f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/wheels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
os: [ubuntu-latest, macos-13, macos-latest]
11+
os: [ubuntu-latest]
1212

1313
steps:
1414
- uses: actions/checkout@v4

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "py_jwt_cpp"
3-
requires-python = ">=3.10"
3+
requires-python = ">=3.8"
44
version = "0.1.0"
55
authors = [
66
{name = "Yanghsing Lin", email = "[email protected]"}
@@ -17,7 +17,7 @@ authors = ["Yanghsing Lin <[email protected]>"]
1717
readme = "README.md"
1818

1919
[tool.poetry.dependencies]
20-
python = ">=3.10"
20+
python = ">=3.8"
2121

2222
[tool.poetry.group.dev.dependencies]
2323
pybind11 = "^2.13.6"
@@ -27,5 +27,5 @@ script = "build.py"
2727
generate-setup-file = true
2828

2929
[build-system]
30-
requires = ["poetry-core", "pybind11", "setuptools"]
30+
requires = ["poetry-core", "pybind11", "setuptools=65.5.0"]
3131
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)