Unverified Commit 7f99271d authored by moto's avatar moto Committed by GitHub
Browse files

Fix import order to supress the setuptools warning; (#846)

setuptools warns that it should be imported before Distutils

```
site-packages/setuptools/distutils_patch.py:25: UserWarning: Distutils was imported before Setuptools. This usage is discouraged and may exhibit undesirable behaviors or errors. Please use Setuptools' objects directly or at least import Setuptools first.
```
parent 9c56d88d
...@@ -3,8 +3,8 @@ import os ...@@ -3,8 +3,8 @@ import os
import shutil import shutil
import subprocess import subprocess
from pathlib import Path from pathlib import Path
import distutils.command.clean
from setuptools import setup, find_packages from setuptools import setup, find_packages
import distutils.command.clean
from build_tools import setup_helpers from build_tools import setup_helpers
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment