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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
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)