Skip to content
Snippets Groups Projects
Unverified Commit ce0712f7 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

add pages

parent 0c42bd64
No related branches found
No related tags found
No related merge requests found
Pipeline #61597 failed with stages
in 3 minutes and 35 seconds
# v2.0.1
* _TBA_
# v2.0
* got rid of the Mako dependency
......
......@@ -2,7 +2,7 @@
[metadata]
name = snakehouse
keywords = cython, extension, multiple, pyx
version = 2.0
version = 2.0.1a1
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
license_files = LICENSE
......
......@@ -141,16 +141,6 @@ class Multibuild:
except BreakException:
pass
def is_h_file_ok(self, path: str) -> bool:
if not os.path.exists(path):
return False
with open(path, 'r', encoding='utf-8') as f_in:
data = f_in.read()
if '#define SNAKEHOUSE_LEAVE_ME_ALONE' in data:
return True
return False
def generate_header_files(self):
for filename in self.pyx_files:
path, name, cmod_name_path, module_name, coded_module_name, complete_module_name = self.transform_module_name(filename)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment