-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump version to
2.3.2
, support for Lightning <= 2.3.2
and PyTorch…
… <= `2.3.1`
- Loading branch information
1 parent
2c7fec3
commit 977fde3
Showing
17 changed files
with
32 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
######################################################################################################################## | ||
# Because Lightning is not currently planning an official `2.3.0` release, this FTS release is marked as a pre-release | ||
# and pins the below `lightning` commit. A return to normal Lightning cadence is expected with `2.4.0` and FTS will | ||
# release accordingly. | ||
######################################################################################################################## | ||
#lightning>=2.3.0,<2.3.1 | ||
lightning>=2.3.0,<2.3.3 | ||
# the below is uncommented when master is targeting a specific pl dev master commit | ||
git+https://github.com/Lightning-AI/lightning.git@90d04b5b86f37994cdceccc6de32f0e93b1cc7f0#egg=lightning | ||
#git+https://github.com/Lightning-AI/lightning.git@90d04b5b86f37994cdceccc6de32f0e93b1cc7f0#egg=lightning | ||
torch>=2.0.0 | ||
mpmath<1.4.0 # temporary requirement to avoid installation of alpha version of mpmath |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
######################################################################################################################## | ||
# Because Lightning is not currently planning an official `2.3.0` release, this FTS release is marked as a pre-release | ||
# and pins the below `lightning` commit. A return to normal Lightning cadence is expected with `2.4.0` and FTS will | ||
# release accordingly. | ||
######################################################################################################################## | ||
#pytorch-lightning>=2.3.0,<2.3.1 | ||
pytorch-lightning>=2.3.0,<2.3.3 | ||
# the below is uncommented when master is targeting a specific pl dev master commit | ||
git+https://github.com/Lightning-AI/pytorch-lightning.git@90d04b5b86f37994cdceccc6de32f0e93b1cc7f0#egg=pytorch-lightning | ||
#git+https://github.com/Lightning-AI/pytorch-lightning.git@90d04b5b86f37994cdceccc6de32f0e93b1cc7f0#egg=pytorch-lightning | ||
torch>=2.0.0 | ||
mpmath<1.4.0 # temporary requirement to avoid installation of alpha version of mpmath |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import time | ||
|
||
_this_year = time.strftime("%Y") | ||
__version__ = "2.3.0-rc1" | ||
__version__ = "2.3.2" | ||
__author__ = "Dan Dale" | ||
__author_email__ = "[email protected]" | ||
__license__ = "Apache-2.0" | ||
|