Skip to content

prepare for publishing b1 #1678

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
Jul 12, 2025
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
25 changes: 16 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
WinPython tools
===============

Copyright @ 2012-2013 Pierre Raybaut
Copyright 2012-2013 Pierre Raybaut

Copyright @ 2014-2025+ The Winpython development team https://github.com/winpython/
Copyright 2014-2025+ The Winpython development team: https://github.com/winpython/

Licensed under the terms of the MIT License
(see wppm/__init__.py for details)
Expand All @@ -13,7 +13,7 @@ Overview
--------

WinPython is a portable distribution of the Python programming
language for Windows (https://winpython.github.io).
language for Windows: https://winpython.github.io

This is the `wppm` Python package and build toolchain repository, not the distribution itself.
It includes two main features:
Expand Down Expand Up @@ -49,24 +49,31 @@ Wppm build
From the source package (see section 'Building dependencies'), you may
build WPPM using the following commands:

**python -m pip install flit**
.. code-block:: bash

**python -m flit build**
python -m pip install flit
python -m flit build

Winpython Distribution wheels installation
------------------------------------------

To only install the wheels assembled per WinPython Distribution, you may
**python -m pip install --no-deps --require-hashes https://github.com/winpython/winpython/releases/download/16.6.20250620final/requir.64-3_13_5_0slim.txt

.. code-block:: bash

python -m pip install --no-deps --require-hashes https://github.com/winpython/winpython/releases/download/16.6.20250620final/requir.64-3_13_5_0slim.txt

A pylock file is also available, when you package manager can handle it
**https://github.com/winpython/winpython/releases/download/16.6.20250620final/pylock.64-3_13_5_0slim.toml

.. code-block:: text

https://github.com/winpython/winpython/releases/download/16.6.20250620final/pylock.64-3_13_5_0slim.toml

But the easiest way to install the last stable release of WinPython is
by using a zipped distribution with or without auto-extractor: https://winpython.github.io/

More informations
-----------------
More information
----------------

* Downloads: https://sourceforge.net/projects/winpython/files/ or https://github.com/winpython/winpython/releases

Expand Down
2 changes: 1 addition & 1 deletion wppm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
OTHER DEALINGS IN THE SOFTWARE.
"""

__version__ = '17.1.20250705a1'
__version__ = '17.1.20250712b1'
__license__ = __doc__
__project_url__ = 'http://winpython.github.io/'