Skip to content
This repository has been archived by the owner on Oct 30, 2022. It is now read-only.

Commit

Permalink
Replace setuptools.errors with distutils.errors
Browse files Browse the repository at this point in the history
Doing this makes us compatible with the
  python3 -m venv .venv
setup, without any extra step required to use virtualenv or upgrade
setuptools.
  • Loading branch information
fornwall committed Apr 16, 2020
1 parent 19eeb0a commit 317743c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
@@ -1,4 +1,5 @@
from setuptools import find_packages, setup, Command, errors
from distutils import errors
from setuptools import find_packages, setup, Command
from shutil import rmtree
import os
import sys
Expand Down Expand Up @@ -38,7 +39,7 @@
"wheel",
]

VERSION = "0.0.15"
VERSION = "0.0.16"

# Optional packages
EXTRAS = {"dev": DEV}
Expand Down

0 comments on commit 317743c

Please sign in to comment.