We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29b1bae commit 2ead56dCopy full SHA for 2ead56d
setup.py
@@ -7,7 +7,6 @@
7
8
from distutils.command.build import build
9
from setuptools import setup
10
-from setuptools.command.install import install as _install
11
12
try:
13
from babel.messages import frontend as babel
@@ -117,15 +116,7 @@ def git_describe_to_python_version(version):
117
116
vf.write(f"__version__ = \"{version}\"\n")
118
119
120
-class install(_install):
121
- """Force install to run build target."""
122
-
123
- def run(self):
124
- self.run_command("build")
125
- super().run()
126
127
128
-cmdclass = {"build": build, "install": install}
+cmdclass = {"build": build}
129
130
from bpython import package_dir, __author__
131
0 commit comments