Skip to content

Commit

Permalink
change version string
Browse files Browse the repository at this point in the history
  • Loading branch information
beniroquai committed Jun 27, 2024
1 parent 70df902 commit 361eab8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ashlarUC2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Versioneer boilerplate.
from ._version import get_versions
__version__ = 'v1.18.1' # get_versions()['version']
__version__ = '1.18.1' # get_versions()['version']
del get_versions

# Import all the things.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# Version will be read from your package's __init__.py
# Make sure __version__ is defined in imswitch/__init__.py
def get_version():
version_file = 'imswitch/__init__.py'
version_file = 'ashlarUC2/__init__.py'
with open(version_file, 'r') as file:
for line in file:
if line.startswith('__version__'):
Expand Down

0 comments on commit 361eab8

Please sign in to comment.