8000 Merge pull request #1237 from stonebig/master · winpython/winpython@2e27532 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2e27532

Browse files
authored
Merge pull request #1237 from stonebig/master
python-3.12 fixes
2 parents 4d6831a + 6b074d7 commit 2e27532

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1545,7 +1545,7 @@ def _create_batch_scripts(self):
15451545
if exist "%WINPYDIR%\scripts\idlex.pyw" (
15461546
"%WINPYDIR%\python.exe" "%WINPYDIR%\scripts\idlex.pyw" %*
15471547
) else (
1548-
"%WINPYDIR%\python.exe" "%WINPYDIR%\Lib\idlelib\idle.pyw" %*
1548+
echo "%WINPYDIR%\scripts\idlex.pyw" for IDLEX not found !"
15491549
)
15501550
""",
15511551
do_changes=changes,

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__ = '6.1.20230527'
31+
__version__ = '6.3.20230611'
3232
__license__ = __doc__
3333
__project_url__ = 'http://winpython.github.io/'

winpython/data/packages.ini

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3604,3 +3604,24 @@ description = Pandas extension arrays for spatial/geometric operations
36043604
[comm]
36053605
description = Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc.
36063606
3607+
[pypng]
3608+
description = Pure Python library for saving and loading PNG images
3609+
3610+
[pyro-api]
3611+
description = Generic API for dispatch to Pyro backends.
3612+
3613+
[pyro-ppl]
3614+
description = A Python library for probabilistic modeling and inference
3615+
3616+
[python-barcode]
3617+
description = Create standard barcodes with Python. No external modules needed. (optional Pillow support included).
3618+
3619+
[qrcode]
3620+
description = QR Code image generator
3621+
3622+
[sphinxcontrib-jquery]
3623+
description = Extension to include jQuery on newer Sphinx releases
3624+
3625+
[interpreters-3-12]
3626+
description = Use this module to try out multiple interpreters and a per-interpreter GIL in Python 3.12. Do not use this for anything important.
3627+

winpython/wppm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def get_package_metadata(database, name, gotoWWW=False, update=False):
7979
# machine which is not connected to the internet
8080
# we store only normalized names now (PEP 503)
8181
db = cp.ConfigParser()
82-
db.readfp(open(str(Path(DATA_PATH) / database)))
82+
db.read_file(open(str(Path(DATA_PATH) / database)))
8383
my_metadata = dict(
8484
description="",
8585
url="https://pypi.org/project/" + name,

0 commit comments

Comments
 (0)
0