10000 fix a build glitch since the switch to flit · winpython/winpython@3eb4571 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3eb4571

Browse files
committed
fix a build glitch since the switch to flit
1 parent 954147f commit 3eb4571

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2047,7 +2047,7 @@ def rebuild_winpython(basedir, targetdir, architecture=64, verbose=False):
20472047
basedir = basedir
20482048
packdir = targetdir
20492049
for name in os.listdir(packdir):
2050-
if name.startswith("winpython-") and name.endswith((".exe", ".whl")):
2050+
if name.startswith("winpython-") and name.endswith((".exe", ".whl", ".gz")):
20512051
os.remove(str(Path(packdir) / name))
20522052
# utils.build_wininst is replaced per flit 2023-02-27
20532053
utils.buildflit_wininst(

winpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
OTHER DEALINGS IN THE SOFTWARE.
2929
"""
3030

31-
__version__ = '7.1.20231216'
31+
__version__ = '7.1.20240114'
3232
__license__ = __doc__
3333
__project_url__ = 'http://winpython.github.io/'

winpython/data/packages.ini

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3742,3 +3742,27 @@ description = custom jupyter widgets made easy
37423742
[namex]
37433743
description = A simple utility to separate the implementation of your Python package and its public API surface.
37443744
3745+
[highspy]
3746+
description = Python interface to HiGHS
3747+
3748+
[kornia]
3749+
description = Open Source Differentiable Computer Vision Library for PyTorch
3750+
3751+
[lightning]
3752+
description = The Deep Learning framework to train, deploy, and ship AI products Lightning fast.
3753+
3754+
[lightning-utilities]
3755+
description = PyTorch Lightning Sample project.
3756+
3757+
[pysimplegui]
3758+
description = Python GUIs for Humans. Launched in 2018. It's 2022 & PySimpleGUI is an ACTIVE & supported project. Super-simple to create custom GUI's. 325+ Demo programs & Cookbook for rapid start. Extensive documentation. Main docs at www.PySimpleGUI.org. Fun & your success are the focus. Examples using Machine Learning (GUI, OpenCV Integration), Rainmeter Style Desktop Widgets, Matplotlib + Pyplot, PIL support, add GUI to command line scripts, PDF & Image Viewers. Great for beginners & advanced GUI programmers.
3759+
3760+
[pytorch-lightning]
3761+
description = PyTorch Lightning is the lightweight PyTorch wrapper for ML researchers. Scale your models. Write less boilerplate.
3762+
3763+
[tensorboard-data-server]
3764+
description = Fast data loading for TensorBoard
3765+
3766+
[torchmetrics]
3767+
description = PyTorch native Metrics
3768+

0 commit comments

Comments
 (0)
0