Skip to content

Commit

Permalink
setup.py: Import setuptools before distutils to fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mitya57 committed Jan 19, 2021
1 parent 55a3a83 commit d368094
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
import os
import sys
from os.path import join, basename
from distutils import log
from distutils.command.build import build
from setuptools import setup, Command
from setuptools.command.sdist import sdist
from setuptools.command.install import install
from distutils import log
from distutils.command.build import build
from subprocess import check_call
from glob import glob, iglob

Expand Down

0 comments on commit d368094

Please sign in to comment.