Skip to content

Commit

Permalink
Update setup.py for setuptools 65
Browse files Browse the repository at this point in the history
setuptools complains loudly if distutils is also used, and exits with error
in the 'docs' step since distutils.core.Command rather than setuptools.Command
was used for that step.
  • Loading branch information
llimeht committed Sep 23, 2022
1 parent d7b5341 commit d736add
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@
import subprocess
import shutil
import sys
from distutils.core import Command

from setuptools import setup
from setuptools import setup, Command

# Manage version number ######################################
with open(os.path.join("src", "sas", "sasview", "__init__.py")) as fid:
Expand Down

0 comments on commit d736add

Please sign in to comment.