Skip to content

Commit 111b3b1

Browse files
committed
removing 3.12 and updating versioneer and running precommit changes
1 parent 8564980 commit 111b3b1

File tree

8 files changed

+1036
-429
lines changed

8 files changed

+1036
-429
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pydra_ml/_version.py export-subst

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
- 3.9
2121
- "3.10"
2222
- "3.11"
23-
- "3.12"
2423

2524
steps:
2625
- uses: actions/checkout@v2

pydra_ml/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import logging
22
import os
33

4-
from ._version import get_versions
4+
from . import _version
55

6-
__version__ = get_versions()["version"]
7-
del get_versions
6+
__version__ = _version.get_versions()["version"]
87

98
#
109
# Basic logger configuration

0 commit comments

Comments
 (0)