-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: rename _version.py to version.py (#521)
- Loading branch information
Showing
4 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,6 @@ | |
__author__ = """Manuel Holtgrewe""" | ||
__email__ = "[email protected]" | ||
|
||
from snappy_pipeline._version import __version__ | ||
from snappy_pipeline.version import __version__ | ||
|
||
__all__ = ["__version__", "expand_ref", "merge_dicts", "print_config", "print_sample_sheets"] |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from snappy_pipeline._version import __version__ | ||
from snappy_pipeline.version import __version__ | ||
|
||
__author__ = """Manuel Holtgrewe""" | ||
__email__ = "[email protected]" | ||
|