Skip to content

Commit 4c71816

Browse files
committed
Remove versioneer.py
1 parent cd45c74 commit 4c71816

File tree

7 files changed

+120
-2356
lines changed

7 files changed

+120
-2356
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = [
33
"setuptools>=59.0.0",
44
"cython",
55
"numpy>=1.17.0",
6-
"versioneer[toml]>=0.28",
6+
"versioneer[toml]==0.29",
77
]
88
build-backend = "setuptools.build_meta"
99

pytensor/__init__.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@
2828
from pathlib import Path
2929
from typing import Any, NoReturn, Optional
3030

31-
from pytensor.version import version as __version__
31+
from pytensor import _version
32+
33+
34+
__version__: str = _version.get_versions()["version"]
3235

3336

3437
pytensor_logger = logging.getLogger("pytensor")

0 commit comments

Comments
 (0)