Skip to content

Commit 50ea189

Browse files
committed
Fix setuptools warning
Load distutils after setuptools, to address this following warning from Setuptools: > Distutils was imported before Setuptools. This usage is discouraged > and may exhibit undesirable behaviors or errors.
1 parent df3c919 commit 50ea189

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import re
2-
import sdist_upip
32
from setuptools import setup
3+
import sdist_upip
44

55

66
def long_desc_from_readme():

0 commit comments

Comments
 (0)