Skip to content

Commit

Permalink
Replace deprecated distutils with setuptools (#44)
Browse files Browse the repository at this point in the history
As described in [1], distutils is a deprecated module and will be
removed in python 3.12. The simplest step forward is substituting it
with setuptools.

[1] https://docs.python.org/3/library/distutils.html
  • Loading branch information
athos-ribeiro committed Jul 27, 2023
1 parent 92cc608 commit b7b9505
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
nose
mock
# libxml2-utils
setuptools
sphinx
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
# USA

from distutils.core import setup
from setuptools import setup

setup(name='firehose',
version='0.5',
Expand Down

0 comments on commit b7b9505

Please sign in to comment.