Skip to content

Commit

Permalink
Actually removed distutils!
Browse files Browse the repository at this point in the history
  • Loading branch information
Rory Barnes committed Sep 6, 2024
1 parent f234384 commit 3480eb5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import os
import sys

if sys.version_info >= (3, 12):
# For Python 3.12 and above, use setuptools
from setuptools.command.clean import clean
else:
# For Python versions below 3.12, use distutils
from distutils.command.clean import clean
# if sys.version_info >= (3, 12):
# # For Python 3.12 and above, use setuptools
# from setuptools.command.clean import clean
# else:
# # For Python versions below 3.12, use distutils
# from distutils.command.clean import clean

from glob import glob

Expand Down

0 comments on commit 3480eb5

Please sign in to comment.