8000 ENH: Prepare for py2exe dropping distutils support by effigies · Pull Request #319 · python-versioneer/python-versioneer · GitHub
[go: up one dir, main page]

Skip to content

ENH: Prepare for py2exe dropping distutils support #319

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/cmdclass.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,10 @@ def run(self):
del cmds["build_py"]

if 'py2exe' in sys.modules: # py2exe enabled?
from py2exe.distutils_buildexe import py2exe as _py2exe
try:
from py2exe.setuptools_buildexe import py2exe as _py2exe
except ImportError:
from py2exe.distutils_buildexe import py2exe as _py2exe

class cmd_py2exe(_py2exe):
def run(self):
Expand Down
0