Skip to content

Commit 66571b8

Browse files
committed
Fix setup.py cmdclass parameter
1 parent cd1a597 commit 66571b8

File tree

6 files changed

+2979
-14
lines changed

6 files changed

+2979
-14
lines changed

.gitattributes

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

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ ENV/
99
**/include/
1010
**/share/
1111
pyvenv.cfg
12+
*.code-workspace
1213

1314
# Python
1415
__pycache__/

optimrl/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
from .core import GRPO
22

33
__version__ = "0.1.0"
4-
__all__ = ["GRPO"]
4+
__all__ = ["GRPO"]
5+
from . import _version
6+
__version__ = _version.get_versions()['version']

0 commit comments

Comments
 (0)