Skip to content

Commit ff46291

Browse files
committed
Corrections for Numpy 2.0 breaking changes
1 parent 1c88a3d commit ff46291

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

modulesettings.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"Text2Image": {
55
"Name": "Text to Image",
6-
"Version": "1.2.1",
6+
"Version": "1.2.2",
77

88
"PublishingInfo": {
99
"Description": "Generates an image from a text prompt.",
@@ -49,7 +49,8 @@
4949
{ "ModuleVersion": "1.1.1", "ServerVersionRange": [ "2.6.0", "2.6.0" ], "ReleaseDate": "2024-03-26", "ReleaseNotes": "Bug fixes" },
5050
{ "ModuleVersion": "1.1.2", "ServerVersionRange": [ "2.6.1", "" ], "ReleaseDate": "2024-04-01", "ReleaseNotes": "Updates for server 2.6" },
5151
{ "ModuleVersion": "1.2.0", "ServerVersionRange": [ "2.6.5", "" ], "ReleaseDate": "2024-04-25", "ReleaseNotes": "Updates for server 2.6.5" },
52-
{ "ModuleVersion": "1.2.1", "ServerVersionRange": [ "2.6.5", "" ], "ReleaseDate": "2024-06-26", "ReleaseNotes": "Corrections to compatibility settings" }
52+
{ "ModuleVersion": "1.2.1", "ServerVersionRange": [ "2.6.5", "" ], "ReleaseDate": "2024-06-26", "ReleaseNotes": "Corrections to compatibility settings" },
53+
{ "ModuleVersion": "1.2.2", "ServerVersionRange": [ "2.6.5", "" ], "ReleaseDate": "2024-06-26", "ReleaseNotes": "Corrections for Numpy 2.0 breaking changes" }
5354
]
5455
},
5556
"UIElements": {

requirements.linux.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#! Python3.9
22

3+
numpy==1.23 # Installing NumPy, a package for scientific computing
4+
35
--extra-index-url https://download.pytorch.org/whl/cpu
46
torch==2.1.2+cpu # Installing PyTorch, for Tensor computation and Deep neural networks
57

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#! Python3.9
22

3+
numpy==1.23 # Installing NumPy, a package for scientific computing
4+
35
--extra-index-url https://download.pytorch.org/whl/cpu
46
torch==2.1.2+cpu # Installing PyTorch, for Tensor computation and Deep neural networks
57

0 commit comments

Comments
 (0)