Skip to content

Commit

Permalink
Merge pull request #962 from messense/windows-pypy-sysconfig
Browse files Browse the repository at this point in the history
Add sysconfigs for x64 Windows PyPy
  • Loading branch information
messense authored Jun 10, 2022
2 parents 9e1fb4f + f60bddc commit 7dcd12d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Add a `--target` option to `maturin list-python` command in [#957](https://github.com/PyO3/maturin/pull/957)
* Add support for using bundled python sysconfigs for PyPy when abi3 feature is enabled in [#958](https://github.com/PyO3/maturin/pull/958)
* Set `PYO3_PYTHON` env var for PyPy when abi3 is enabled in [#960](https://github.com/PyO3/maturin/pull/960)
* Add sysconfigs for x64 Windows PyPy in [#962](https://github.com/PyO3/maturin/pull/962)

## [0.12.19] - 2022-06-05

Expand Down
27 changes: 27 additions & 0 deletions src/python_interpreter/sysconfig-windows.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,33 @@
"ext_suffix": ".cp311-win_amd64.pyd",
"abi_tag": null,
"pointer_width": 64
},
{
"major": 3,
"minor": 7,
"abiflags": "",
"interpreter": "pypy",
"ext_suffix": ".pypy37-pp73-win_amd64.pyd",
"abi_tag": "pp73",
"pointer_width": 64
},
{
"major": 3,
"minor": 8,
"abiflags": "",
"interpreter": "pypy",
"ext_suffix": ".pypy38-pp73-win_amd64.pyd",
"abi_tag": "pp73",
"pointer_width": 64
},
{
"major": 3,
"minor": 9,
"abiflags": "",
"interpreter": "pypy",
"ext_suffix": ".pypy39-pp73-win_amd64.pyd",
"abi_tag": "pp73",
"pointer_width": 64
}
],
"i686": [
Expand Down

0 comments on commit 7dcd12d

Please sign in to comment.