Skip to content

Commit 742c729

Browse files
committed
bump dev sha to lightning 2.5.1 release
1 parent 94f9f05 commit 742c729

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ date-released: 2022-02-04
66
authors:
77
- family-names: "Dale"
88
given-names: "Dan"
9-
version: 2.5.0
9+
version: 2.5.1
1010
identifiers:
1111
- description: "Fine-Tuning Scheduler (all versions)"
1212
type: doi

requirements/base.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
lightning>=2.5.0,<2.5.1
1+
#lightning>=2.5.0,<2.5.1
22
# the below is uncommented when master is targeting a specific pl dev master commit
3-
#git+https://github.com/Lightning-AI/lightning.git@110d62185161cd0b11d8619336ddd139e5ee09dd#egg=lightning
3+
git+https://github.com/Lightning-AI/lightning.git@878ecf56b06d5ae3f482e146e78accabc685bfc7#egg=lightning
44
torch>=2.2.0

requirements/standalone_base.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pytorch-lightning>=2.5.0,<2.5.1
1+
#pytorch-lightning>=2.5.0,<2.5.1
22
# the below is uncommented when master is targeting a specific pl dev master commit
3-
#git+https://github.com/Lightning-AI/pytorch-lightning.git@110d62185161cd0b11d8619336ddd139e5ee09dd#egg=pytorch-lightning
3+
git+https://github.com/Lightning-AI/pytorch-lightning.git@878ecf56b06d5ae3f482e146e78accabc685bfc7#egg=pytorch-lightning
44
torch>=2.2.0

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -131,15 +131,15 @@ def _setup_args(standalone: bool = False) -> Dict[str, Any]:
131131
)
132132

133133
base_reqs = "standalone_base.txt" if standalone else "base.txt"
134-
install_requires = setup_tools._load_requirements(
135-
_INSTALL_PATHS["require"], file_name=base_reqs, standalone=standalone
136-
)
137134
# install_requires = setup_tools._load_requirements(
138-
# _INSTALL_PATHS["require"],
139-
# file_name=base_reqs,
140-
# standalone=standalone,
141-
# pl_commit="110d62185161cd0b11d8619336ddd139e5ee09dd",
135+
# _INSTALL_PATHS["require"], file_name=base_reqs, standalone=standalone
142136
# )
137+
install_requires = setup_tools._load_requirements(
138+
_INSTALL_PATHS["require"],
139+
file_name=base_reqs,
140+
standalone=standalone,
141+
pl_commit="878ecf56b06d5ae3f482e146e78accabc685bfc7",
142+
)
143143
base_setup["install_requires"] = install_requires
144144
return base_setup
145145

src/finetuning_scheduler/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import time
22

33
_this_year = time.strftime("%Y")
4-
__version__ = "2.5.0"
4+
__version__ = "2.5.1"
55
__author__ = "Dan Dale"
66
__author_email__ = "[email protected]"
77
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)