Skip to content

Commit

Permalink
Remove dependency on distutils, was removed in Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Photonios committed Feb 7, 2024
1 parent 143752b commit 23c1e47
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import distutils.cmd
import os
import subprocess

from setuptools import find_packages, setup
from setuptools import Command, find_packages, setup

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


class BaseCommand(distutils.cmd.Command):
class BaseCommand(Command):
user_options = []

def initialize_options(self):
Expand Down

0 comments on commit 23c1e47

Please sign in to comment.