Skip to content

Commit ef4f83d

Browse files
authored
relax setuptools version (#652)
1 parent 19b5d33 commit ef4f83d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
- name: Prepare
3434
shell: bash
3535
run: |
36-
python -m pip install -U pip
3736
python -m pip install -r requirements.txt pytest
3837
3938
- name: Build
@@ -55,8 +54,7 @@ jobs:
5554
- name: build packages
5655
shell: bash
5756
run: |
58-
pip install build
59-
python -m build
57+
python -m build -nv
6058
6159
- name: upload packages
6260
uses: actions/upload-artifact@v4

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
include setup.py
22
include COPYING
33
include README.md
4-
recursive-include msgpack *.h *.c *.pyx *.cpp
4+
recursive-include msgpack *.h *.c *.pyx
55
recursive-include test *.py

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools >= 80.9.0"]
2+
requires = ["setuptools >= 77.0.3"]
33
build-backend = "setuptools.build_meta"
44

55
[project]

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
Cython==3.1.4
2+
setuptools==77.0.3
3+
build

0 commit comments

Comments
 (0)