Skip to content

Commit 143fb69

Browse files
committed
versioneer updates
1 parent b026d7a commit 143fb69

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ jobs:
3636
pip install --upgrade --force-reinstall --no-cache-dir --editable=".[test]"
3737
- name: Test with pytest
3838
run: |
39-
pytest -sv pydra_ml/tests/test_classifier.py
39+
pytest pydra_ml/tests/test_classifier.py

pydra_ml/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,7 @@ def set_logger_level(lgr, level):
3535
set_logger_level(lgr, os.environ.get("PYDRAML_LOG_LEVEL", logging.INFO))
3636
FORMAT = "%(asctime)-15s [%(levelname)8s] %(message)s"
3737
logging.basicConfig(format=FORMAT)
38+
39+
from . import _version
40+
41+
__version__ = _version.get_versions()["version"]

0 commit comments

Comments
 (0)