Skip to content

Commit 2ead56d

Browse files
committed
Remove obsolete install target fix up
1 parent 29b1bae commit 2ead56d

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

setup.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
from distutils.command.build import build
99
from setuptools import setup
10-
from setuptools.command.install import install as _install
1110

1211
try:
1312
from babel.messages import frontend as babel
@@ -117,15 +116,7 @@ def git_describe_to_python_version(version):
117116
vf.write(f"__version__ = \"{version}\"\n")
118117

119118

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}
119+
cmdclass = {"build": build}
129120

130121
from bpython import package_dir, __author__
131122

0 commit comments

Comments
 (0)