Skip to content

Commit 23c1e47

Browse files
committed
Remove dependency on distutils, was removed in Python 3.12
1 parent 143752b commit 23c1e47

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
import distutils.cmd
21
import os
32
import subprocess
43

5-
from setuptools import find_packages, setup
4+
from setuptools import Command, find_packages, setup
65

76
exec(open("psqlextra/_version.py").read())
87

98

10-
class BaseCommand(distutils.cmd.Command):
9+
class BaseCommand(Command):
1110
user_options = []
1211

1312
def initialize_options(self):

0 commit comments

Comments
 (0)