We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3480eb5 commit 03e1470Copy full SHA for 03e1470
.github/workflows/pip-install.yml
@@ -32,6 +32,7 @@ jobs:
32
- name: Install cibuildwheel
33
run: |
34
python -m pip install -U pip
35
+ python -m pip install setuptools
36
python -m pip install cibuildwheel
37
38
- name: Build wheel on Linux
setup.py
@@ -1,15 +1,6 @@
1
import os
2
import sys
3
-
4
-# if sys.version_info >= (3, 12):
5
-# # For Python 3.12 and above, use setuptools
6
-# from setuptools.command.clean import clean
7
-# else:
8
-# # For Python versions below 3.12, use distutils
9
-# from distutils.command.clean import clean
10
11
from glob import glob
12
13
from setuptools import Extension, find_packages, setup
14
from setuptools.command.build_ext import build_ext
15
from setuptools.command.develop import develop
0 commit comments