-
-
Notifications
You must be signed in to change notification settings - Fork 52
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
setup.py --hpy-abi=universal build_ext --inplace doesn't work #140
Comments
I also tried to comment out the "please delete" check in diff --git a/hpy/devel/__init__.py b/hpy/devel/__init__.py
index 33be1a0..c232029 100644
--- a/hpy/devel/__init__.py
+++ b/hpy/devel/__init__.py
@@ -240,8 +240,8 @@ class build_hpy_ext_mixin:
ext._full_name, output_dir)
stub_file = (os.path.join(output_dir, *ext._full_name.split('.')) +
'.py')
- if compile and os.path.exists(stub_file):
- raise DistutilsError(stub_file + " already exists! Please delete.")
+ ## if compile and os.path.exists(stub_file):
+ ## raise DistutilsError(stub_file + " already exists! Please delete.")
ext_file = os.path.basename(ext._file_name)
module_name = ext_file.split(".")[0]
if not self.dry_run:
It seems that the stub |
antocuni
added a commit
that referenced
this issue
Dec 16, 2020
Fixed in #143. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As the title says:
cc @hodgestar
The text was updated successfully, but these errors were encountered: