René's URL Explorer Experiment


Title: WinPython 64 bit with PyPy · Issue #966 · winpython/winpython · GitHub

Open Graph Title: WinPython 64 bit with PyPy · Issue #966 · winpython/winpython

X Title: WinPython 64 bit with PyPy · Issue #966 · winpython/winpython

Description: To celebrate the arrival of PyPy on Windows 64 bit, Let see if we can build a WinPython with PyPy. Interception course with cPython: interesting spot is: PyPy + VSCode + Jupyterlab + Cython + HPy , on 64 bit, maybe pyside6-6.1 WinPython ...

Open Graph Description: To celebrate the arrival of PyPy on Windows 64 bit, Let see if we can build a WinPython with PyPy. Interception course with cPython: interesting spot is: PyPy + VSCode + Jupyterlab + Cython + HPy ,...

X Description: To celebrate the arrival of PyPy on Windows 64 bit, Let see if we can build a WinPython with PyPy. Interception course with cPython: interesting spot is: PyPy + VSCode + Jupyterlab + Cython + HPy ,...

Opengraph URL: https://github.com/winpython/winpython/issues/966

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"WinPython 64 bit with PyPy","articleBody":"To celebrate the arrival of PyPy on Windows 64 bit, Let see if we can build a WinPython with PyPy.\r\n\r\nInterception course with cPython:\r\n- interesting spot is: PyPy + VSCode + Jupyterlab + Cython + [HPy ](https://www.pypy.org/posts/2019/12/hpy-kick-off-sprint-report-1840829336092490938.html), on 64 bit, maybe [pyside6-6.1](https://bugreports.qt.io/browse/PYSIDE-535)\r\n- WinPython 2021-03: PyPy-7.3.5 for Python3.7+ VSCode + Jupyterlab + Cython, on 64 bit only\r\n- WinPython 2021-04: Matplotlib-3.5.0 + PySide-6.1 + HPy and performances fixes\r\n- WinPython 2021-05: PyPy for Python-3.8, [beta seems coming this summer 2021](https://www.twitch.tv/videos/1046851224) \r\n- WinPython ~~2022-02~~ 2022-03: PyPy for Python-3.9 \r\n- WinPython 2022-05: PyPy for Python-3.10\r\n- WinPython 2023-02: PyPy for Python-3.11\r\n\r\nso far:\r\n- [x] WinPython 'dot' version; Yes but missing WPPM GUI (the Qt Problem) \r\n- [x] SQLite_bro : Yes but slightly different behavior, 6x slower\r\n- [x] VScode without Jupyter: ... works by updating VSCode settings per menu, to tell where  pypy3.exe is\r\n- [x] SQLite_bro-0.9.2 fixes [PyPy compatibility](https://github.com/stonebig/sqlite_bro/commit/a63e8e89e6ca262b96de0c9d6b306bb8fd6068d1)\r\n- [x] a small Speed-Center table (below)\r\n- [x] Adapt Build System to automate PyPy builds like the cPython builds\r\n- [x] SQLite-3.35.5 in PyPy-7.3.5rc1 (becoming level with CPython)\r\n- [x] Numpy, Matplotlib,  Pandas, scikit-learn\r\n- [x] Pywinpty\r\n- [x] a cython wheel (but compiling to cython slows things 2.5x, currently)\r\n- [x] statsmodels (after statsmodels [made a compatibility patch](https://github.com/statsmodels/statsmodels/pull/7462))\r\n- [x] [pyzmq fix](https://github.com/zeromq/pyzmq/pull/1534) (per Christoph Gohlke)\r\n- [x] [Jupyter compatibility](https://github.com/jupyter/jupyter_core/issues/226#issuecomment-847341125) (since May 25th morning ... to integrate in a release)\r\n\r\nRoadblocks or Hacks :\r\n- Qt Stack: needs \r\n  - [x] COMPATIBLE PySide6-6.1 with PyPy,\r\n  - [x] COMPATIBLE Matplotlib-3.5.0 with PySide6-6.1 (end  october ~~june~~ ?)\r\n\r\nOther:\r\n- follow HPy progress (hpy-0.02 [there ](https://foss.heptapod.net/pypy/pypy/-/commits/branch/hpy-0.0.2))\r\n- performance on PyPy3 (vs optimized PyPy2):\r\n   - [x] [Import lib speed-up like it's done in cPython (via cache)](https://foss.heptapod.net/pypy/pypy/-/tree/branch/py3.7-import-speedup)\r\n   - [x] [better PyPy3 string handling](https://foss.heptapod.net/pypy/pypy/-/tree/branch/py3.7-newtext-const-arg-caching)\r\n - performance vs cPython:\r\n   - example from the expert shows [it can indeed fly 3x cython speed](https://foss.heptapod.net/pypy/pypy/-/issues/3473#note_159611)\r\n   - but it's not performant in current raw form when we use current numpy\r\n\r\nSpeed-Center:\r\n\r\nspeed test (seconds) | Cpython-3.9 | Pypy-7.3.5 3.7.10 | PyPy-7.3.6 3.8.10 nightly | comment\r\n------------|---------------|-----------|----------|-----|\r\nSQLite_bro | 13 | 85 | 35 | seems linked to ['import' not being cached](https://foss.heptapod.net/pypy/pypy/-/issues/3431) , but now SQLite-3.35.0 with math functions included, and PyPy-7.3.6 will cache imports (200x speed-up, but apparently no effect)\r\n[sudoku_norvig_for_comparison_of_complexity.py](https://github.com/winpython/winpython_afterdoc/blob/master/docs/Solvers_Raymond_Hettinger/python/sudoku_norvig_for_comparison_of_complexity.py) | 0.09 | 0.51 | \r\n[sudoku_norvig_for_comparison_of_complexity.py (hard1)](https://github.com/winpython/winpython_afterdoc/blob/master/docs/Solvers_Raymond_Hettinger/python/sudoku_norvig_for_comparison_of_complexity.py) | 89 | 42 | 65 | python-3.10a7 = 89s, numba can't, cython = 47s\r\nspeed_basic.py (code below or [there](https://realpython.com/pypy-faster-python/))  | 25.5 |  0.27 |  \r\n[pyconumpy ](https://github.com/paugier/piconumpy)| |  |  |  **the microbench to prove or not that Pypy is a scientific option (should become good with HPy)**\r\n\r\n[the Nbody experiment](https://foss.heptapod.net/pypy/pypy/-/issues/3349) became [good in PyPy with type freezing ](https://www.csl.cornell.edu/~cbatten/pdfs/cheng-type-freezing-cgo2020.pdf) \r\n at [CGO ’20, February 22–26, 2020, San Diego, CA, USA](https://cgo-conference.github.io/cgo2020/)\r\n\r\nClimate Impact\r\n![image](https://user-images.githubusercontent.com/4312421/115785494-d30f2c00-a3bf-11eb-9ae6-6f19b6ac6b1a.png)\r\n","author":{"url":"https://github.com/stonebig","@type":"Person","name":"stonebig"},"datePublished":"2021-04-19T21:53:02.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":43},"url":"https://github.com/966/winpython/issues/966"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:096d4b09-3f20-eb60-f2d8-840e02f437cc
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idB830:3BFB17:22E32E:2CB89A:6973FF0B
html-safe-noncee24c391278421b7dce5f75b03363f065cddbb65f23cadf74defc0bfbc0e16245
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCODMwOjNCRkIxNzoyMkUzMkU6MkNCODlBOjY5NzNGRjBCIiwidmlzaXRvcl9pZCI6IjIwMjA3NjM3NTc4NDY5ODY1MDciLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac507a87b15b36530c160ad977e109b45d828f446c51fd99b9e0db33757413486b
hovercard-subject-tagissue:861977495
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/winpython/winpython/966/issue_layout
twitter:imagehttps://opengraph.githubassets.com/3dfc781a9dedac903efea3edb0c9dd5a345b990e9ae7d323881935c2c0238238/winpython/winpython/issues/966
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/3dfc781a9dedac903efea3edb0c9dd5a345b990e9ae7d323881935c2c0238238/winpython/winpython/issues/966
og:image:altTo celebrate the arrival of PyPy on Windows 64 bit, Let see if we can build a WinPython with PyPy. Interception course with cPython: interesting spot is: PyPy + VSCode + Jupyterlab + Cython + HPy ,...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamestonebig
hostnamegithub.com
expected-hostnamegithub.com
None2e0119fb6c27766bcaf7c7facecf6a01e2e3f46178600e1ae4cd18f39f26d07e
turbo-cache-controlno-preview
go-importgithub.com/winpython/winpython git https://github.com/winpython/winpython.git
octolytics-dimension-user_id8850436
octolytics-dimension-user_loginwinpython
octolytics-dimension-repository_id24275324
octolytics-dimension-repository_nwowinpython/winpython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id24275324
octolytics-dimension-repository_network_root_nwowinpython/winpython
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release537b85d925713805fbaf32aee83b4c1b4506dd82
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/winpython/winpython/issues/966#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fwinpython%2Fwinpython%2Fissues%2F966
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fwinpython%2Fwinpython%2Fissues%2F966
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=winpython%2Fwinpython
Reloadhttps://github.com/winpython/winpython/issues/966
Reloadhttps://github.com/winpython/winpython/issues/966
Reloadhttps://github.com/winpython/winpython/issues/966
winpython https://github.com/winpython
winpythonhttps://github.com/winpython/winpython
Notifications https://github.com/login?return_to=%2Fwinpython%2Fwinpython
Fork 343 https://github.com/login?return_to=%2Fwinpython%2Fwinpython
Star 2.2k https://github.com/login?return_to=%2Fwinpython%2Fwinpython
Code https://github.com/winpython/winpython
Issues 78 https://github.com/winpython/winpython/issues
Pull requests 0 https://github.com/winpython/winpython/pulls
Discussions https://github.com/winpython/winpython/discussions
Actions https://github.com/winpython/winpython/actions
Projects 0 https://github.com/winpython/winpython/projects
Wiki https://github.com/winpython/winpython/wiki
Security 0 https://github.com/winpython/winpython/security
Insights https://github.com/winpython/winpython/pulse
Code https://github.com/winpython/winpython
Issues https://github.com/winpython/winpython/issues
Pull requests https://github.com/winpython/winpython/pulls
Discussions https://github.com/winpython/winpython/discussions
Actions https://github.com/winpython/winpython/actions
Projects https://github.com/winpython/winpython/projects
Wiki https://github.com/winpython/winpython/wiki
Security https://github.com/winpython/winpython/security
Insights https://github.com/winpython/winpython/pulse
New issuehttps://github.com/login?return_to=https://github.com/winpython/winpython/issues/966
New issuehttps://github.com/login?return_to=https://github.com/winpython/winpython/issues/966
WinPython 64 bit with PyPyhttps://github.com/winpython/winpython/issues/966#top
2024-02 Jupyterlab-4.1https://github.com/winpython/winpython/milestone/50
https://github.com/stonebig
https://github.com/stonebig
stonebighttps://github.com/stonebig
on Apr 19, 2021https://github.com/winpython/winpython/issues/966#issue-861977495
HPy https://www.pypy.org/posts/2019/12/hpy-kick-off-sprint-report-1840829336092490938.html
pyside6-6.1https://bugreports.qt.io/browse/PYSIDE-535
beta seems coming this summer 2021https://www.twitch.tv/videos/1046851224
PyPy compatibilityhttps://github.com/stonebig/sqlite_bro/commit/a63e8e89e6ca262b96de0c9d6b306bb8fd6068d1
made a compatibility patchhttps://github.com/statsmodels/statsmodels/pull/7462
pyzmq fixhttps://github.com/zeromq/pyzmq/pull/1534
Jupyter compatibilityhttps://github.com/jupyter/jupyter_core/issues/226#issuecomment-847341125
there https://foss.heptapod.net/pypy/pypy/-/commits/branch/hpy-0.0.2
Import lib speed-up like it's done in cPython (via cache)https://foss.heptapod.net/pypy/pypy/-/tree/branch/py3.7-import-speedup
better PyPy3 string handlinghttps://foss.heptapod.net/pypy/pypy/-/tree/branch/py3.7-newtext-const-arg-caching
it can indeed fly 3x cython speedhttps://foss.heptapod.net/pypy/pypy/-/issues/3473#note_159611
'import' not being cachedhttps://foss.heptapod.net/pypy/pypy/-/issues/3431
sudoku_norvig_for_comparison_of_complexity.pyhttps://github.com/winpython/winpython_afterdoc/blob/master/docs/Solvers_Raymond_Hettinger/python/sudoku_norvig_for_comparison_of_complexity.py
sudoku_norvig_for_comparison_of_complexity.py (hard1)https://github.com/winpython/winpython_afterdoc/blob/master/docs/Solvers_Raymond_Hettinger/python/sudoku_norvig_for_comparison_of_complexity.py
therehttps://realpython.com/pypy-faster-python/
pyconumpy https://github.com/paugier/piconumpy
the Nbody experimenthttps://foss.heptapod.net/pypy/pypy/-/issues/3349
good in PyPy with type freezing https://www.csl.cornell.edu/~cbatten/pdfs/cheng-type-freezing-cgo2020.pdf
CGO ’20, February 22–26, 2020, San Diego, CA, USAhttps://cgo-conference.github.io/cgo2020/
https://user-images.githubusercontent.com/4312421/115785494-d30f2c00-a3bf-11eb-9ae6-6f19b6ac6b1a.png
2024-02 Jupyterlab-4.1https://github.com/winpython/winpython/milestone/50
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.