Commit 17782f70 authored by Boris Bonev's avatar Boris Bonev
Browse files

minor bugfix in setup.py

parent e7ceb9c8
...@@ -49,7 +49,7 @@ def version(root_path): ...@@ -49,7 +49,7 @@ def version(root_path):
--------- ---------
https://packaging.python.org/guides/single-sourcing-package-version/ https://packaging.python.org/guides/single-sourcing-package-version/
""" """
version_path = root_path.joinpath('neuralop', '__init__.py') version_path = root_path.joinpath('torch_harmonics', '__init__.py')
with version_path.open() as f: with version_path.open() as f:
version_file = f.read() version_file = f.read()
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment