8000 fix a build glitch since the switch to flit by stonebig · Pull Request #1285 · winpython/winpython · GitHub
[go: up one dir, main page]

Skip to content

fix a build glitch since the switch to flit #1285

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix a build glitch since the switch to flit
  • Loading branch information
stonebig committed Jan 14, 2024
commit 3eb457151ad32f9cd19dcee61920845436d8b35a
2 changes: 1 addition & 1 deletion make.py
Original file line number Diff line number Diff line change
Expand Up @@ -2047,7 +2047,7 @@ def rebuild_winpython(basedir, targetdir, architecture=64, verbose=False):
basedir = basedir
packdir = targetdir
for name in os.listdir(packdir):
if name.startswith("winpython-") and name.endswith((".exe", ".whl")):
if name.startswith("winpython-") and name.endswith((".exe", ".whl", ".gz")):
os.remove(str(Path(packdir) / name))
# utils.build_wininst is replaced per flit 2023-02-27
utils.buildflit_wininst(
Expand Down
2 changes: 1 addition & 1 deletion winpython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
OTHER DEALINGS IN THE SOFTWARE.
"""

__version__ = '7.1.20231216'
__version__ = '7.1.20240114'
__license__ = __doc__
__project_url__ = 'http://winpython.github.io/'
24 changes: 24 additions & 0 deletions winpython/data/packages.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3742,3 +3742,27 @@ description = custom jupyter widgets made easy
[namex]
description = A simple utility to separate the implementation of your Python package and its public API surface.

[highspy]
description = Python interface to HiGHS

[kornia]
description = Open Source Differentiable Computer Vision Library for PyTorch

[lightning]
description = The Deep Learning framework to train, deploy, and ship AI products Lightning fast.

[lightning-utilities]
description = PyTorch Lightning Sample project.

[pysimplegui]
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.

[pytorch-lightning]
description = PyTorch Lightning is the lightweight PyTorch wrapper for ML researchers. Scale your models. Write less boilerplate.

[tensorboard-data-server]
description = Fast data loading for TensorBoard

[torchmetrics]
description = PyTorch native Metrics

0