Skip to content

Commit 1c472c1

Browse files
committed
Use setuptools instead of deprecated distutils.
1 parent ea73c00 commit 1c472c1

File tree

4 files changed

+34
-423
lines changed

4 files changed

+34
-423
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ jobs:
4343
steps:
4444
- uses: actions/checkout@v4
4545

46+
- name: Install setuptools
47+
run: pip install "setuptools<72"
48+
4649
- name: Build module
4750
run: python setup.py build
4851

@@ -77,6 +80,9 @@ jobs:
7780
with:
7881
python-version: ${{ matrix.python-version }}
7982

83+
- name: Install setuptools
84+
run: pip install "setuptools<72"
85+
8086
- name: Build module
8187
run: python setup.py build
8288

0 commit comments

Comments
 (0)