-
Notifications
You must be signed in to change notification settings - Fork 23
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
CEP: support for ABI3 packages #86
Changes from 10 commits
d17a103
7c3e459
7e85388
b696d37
2b83f16
b4f5649
49b3cda
bd4f67c
f13370c
2ed5000
e0b1cfe
5c92220
a0f8f18
ac391ac
3cedb29
daa5d0f
2757629
0f8b3b7
4f58597
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,235 @@ | ||
# Support for abi3 python packages | ||
|
||
<table> | ||
<tr><td> Title </td><td> Support for abi3 python packages </td> | ||
<tr><td> Status </td><td> Draft </td></tr> | ||
<tr><td> Author(s) </td><td> Isuru Fernando <[email protected]></td></tr> | ||
<tr><td> Created </td><td> July 01, 2023</td></tr> | ||
</table> | ||
|
||
## Abstract | ||
|
||
This CEP specifies how ABI3 python packages are supported in conda install tools | ||
(conda/mamba/micromamba/pixi) and how they are built in conda build tools | ||
(conda-build/rattler-build). | ||
|
||
## Motivation | ||
|
||
When building extensions for python, they might use python minor version | ||
specific symbols. This results in the extension being usable only on that minor | ||
version. These extensions are identified by the extension suffix. | ||
For eg: | ||
|
||
foo.cpython-310-x86_64-linux-gnu.so | ||
|
||
is an extension that support only CPython 3.10 on x86_64-linux-gnu platform. | ||
|
||
However some symbols are available in all python major.minor versions with some | ||
lower bound on the python version. These symbols are part of the | ||
[limited C API]([C_API_Stability]). It is guaranteed that the symbols Stable ABI | ||
jaimergp marked this conversation as resolved.
Show resolved
Hide resolved
|
||
introduced in Python 3.X are available in Python 3.Y for any `Y >= X`. | ||
Extensions using only these symbols are identified by the extension suffix | ||
`abi3.so`. For eg: | ||
|
||
foo.abi3.so | ||
|
||
These extensions only support the platform it was built for (for eg: | ||
`x86_64-linux-gnu`), but is not specified in the extension suffix. | ||
|
||
Note that the stable ABI is only specific to CPython and is not compatible with | ||
PyPy or other Python implementations. For a Python implementation independent | ||
ABI, see the [HPy project](HPy). | ||
jaimergp marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
The motivation for building abi3 packages is that we only need to build the | ||
extension for one python version and the extension will work for any python | ||
later version. This reduces build matrix from 4-5 python minor versions to one | ||
python minor version and reduces the maintenance burden of package builders. | ||
|
||
## noarch: python packages | ||
|
||
abi3 packages are python version independent and we will first look at | ||
`noarch: python` packages that are also python version independent and in addition | ||
are arch independent. | ||
|
||
`noarch: python` packages have several attributes to them: | ||
|
||
<strong>A1</strong>: | ||
They have `subdir: noarch` in `info/index.json`. | ||
|
||
<strong>A2</strong>: | ||
They have `noarch: python` in `info/index.json`. | ||
|
||
<strong>A3</strong>: | ||
Python files are in `<PREFIX>/site-packages`. | ||
|
||
<strong>A4</strong>: | ||
Entry points are recorded in `info/link.json`. | ||
|
||
A conda install tool does four things to support them: | ||
|
||
<strong>B1</strong>: | ||
Files in `<PREFIX>/site-packages` are moved to the correct location. Eg: | ||
`<PREFIX>/lib/python3.10/site-packages`. | ||
|
||
<strong>B2</strong>: | ||
python files (files ending with `*.py`) are compiled to `.pyc` files. Eg: | ||
`<PREFIX>/lib/python3.10/site-packages/foo.py` is compiled to | ||
`<PREFIX>/lib/python3.10/site-packages/__pycache__/foo.cpython-310.pyc`. | ||
|
||
<strong>B3</strong>: | ||
`.pyc` files created are recorded in `<PREFIX>/conda-meta/<pkg>.json` | ||
so that they are removed properly when the package is uninstalled. | ||
|
||
<strong>B4</strong>: | ||
Entry points in `info/link.json` are materialised. | ||
|
||
### info/link.json file | ||
An example `info/link.json` for `noarch: python` looks like | ||
|
||
```json | ||
{ | ||
"noarch": { | ||
"entry_points": [ | ||
"isympy = isympy:main" | ||
], | ||
"type": "python" | ||
}, | ||
"package_metadata_version": 1, | ||
"preferred_env": "foo" | ||
} | ||
``` | ||
|
||
An example for `info/link.json` for `noarch: generic` looks like | ||
``` | ||
jaimergp marked this conversation as resolved.
Show resolved
Hide resolved
|
||
{ | ||
"noarch": { | ||
"type": "generic" | ||
}, | ||
"package_metadata_version": 1 | ||
} | ||
``` | ||
|
||
|
||
Here `preferred_env` is ignored by conda since 2017 and is not supported by | ||
other conda install tools. Therefore `info/link.json` is used exclusively | ||
for `noarch` packages and out of the two types, `noarch: generic` packages | ||
does not require any special action. | ||
|
||
### info/index.json file | ||
|
||
An example for a `noarch: python` recipe. | ||
|
||
```json | ||
{ | ||
"arch": null, | ||
"build": "pyh2585a3b_103", | ||
"build_number": 103, | ||
"depends": [ | ||
"mpmath >=0.19", | ||
"python >=3.8" | ||
], | ||
"license": "BSD-3-Clause", | ||
"license_family": "BSD", | ||
"name": "sympy", | ||
"noarch": "python", | ||
"platform": null, | ||
"subdir": "noarch", | ||
"timestamp": 1718625708903, | ||
"version": "1.12.1" | ||
} | ||
``` | ||
|
||
### Current behaviour in solver tools | ||
|
||
Conda package upload tools like `anaconda-client` use `A1` to upload | ||
the package to the `noarch` subdir. | ||
|
||
Conda install tools have slightly different behaviour. | ||
|
||
Conda: | ||
1. Actions `B1, B2, B3` are applied for packages with `A3`. | ||
2. Action `B4` is applied for packages with `A4`. | ||
|
||
Micromamba: | ||
1. Actions `B1, B2, B3` are applied for packages with both `A2, A3`. | ||
2. Action `B4` is applied for packages with both `A2, A4`. | ||
Comment on lines
+152
to
+154
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For reference, rattler follows the same behavior as micromamba. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm interested what your suggestion is for this mismatch in behavior, should conda be adapted to follow mamba and rattler in this case? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. My suggestion is to keep the existing mismatched behaviour in |
||
|
||
|
||
## Implementation for abi3 packages | ||
|
||
### Support in install tools | ||
|
||
We require the following attributes in abi3 packages: | ||
|
||
<strong>C1</strong>: | ||
They have `subdir: <platform>` where `<platform>` is the subdir | ||
that the package was built for. | ||
|
||
<strong>C2</strong>: | ||
They have `noarch: python`. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should there be a suggestion for a new way to specify abi3 packages in this proposal? I understand how Also, I had tried to test with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This is
That should be fixable by using |
||
|
||
<strong>C3</strong>: | ||
`A2, A3, A4` are applied. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Minor: A2 is already covered by C2 if I'm not mistaken. Do I get this right? |
||
|
||
This is compatible with `conda/mamba/micromamba` install tools | ||
currently. | ||
|
||
### Support in build tools | ||
|
||
This requires support from build tools to set `subdir: <platform>`. | ||
|
||
In particular recipe authors would set | ||
``` | ||
build: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think for V1 recipes we would use: build:
python:
version_independent: true/false |
||
python_version_independent: true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i think something like python:
abi: abi3 leaves open enough space to support future expansion of other abis that may require special behavior for example python:
abi: hpy There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @mariusvniekerk, both those options need the exact same thing. (B1-B4) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here's what a conda-build PR would look like conda/conda-build#5456 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note that it's fairly likely that |
||
|
||
requirements: | ||
host: | ||
- python | ||
- python-abi3 | ||
``` | ||
which would make the build tool | ||
|
||
<strong>D1</strong>: | ||
Set `noarch: python` in `info/index.json`. | ||
|
||
Note that `python-abi3` would set the runtime requirements. | ||
This is explicitly required from recipe authors so that we do not | ||
restrict this CEP to ABI3 packages and allow the possibility for ABI4 etc. | ||
|
||
An example `python-abi3=3.8` package would set itself in its | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Minor: perhaps this should use the same There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unlike python which needs multiple values for arch builds and a single value for noarch builds, we only need a single value for abi3 builds. So we can set python_abi3:
- 3.8 in our global pinning file in conda-forge and anaconda. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay, that makes sense. Some of the "automatically bump" rationale of There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
That's not guaranteed AFAIU. Despite the ABI being stable, new features get added in newer python versions, and if anything depends on those features, you might need both the oldest and a newer abi3 build. For example, cryptography builds for both the py37 & py39 limited API. In the future, it's quite likely that other features (e.g. nogil) will similarly require a newer baseline for some features. Of course, individual feedstocks will be able to override There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, but what I want to emphasize is that we don't need different requirements based on |
||
`run_exports` entry and will have the following requirements: | ||
```yaml | ||
requirements: | ||
run: | ||
- cpython >=3.8 | ||
- python-gil | ||
``` | ||
|
||
## Alternatives considered | ||
|
||
### Apply all actions in a `post-link.sh` script. | ||
|
||
A draft work provided at [python-feedstock](python-pr-669) | ||
jaimergp marked this conversation as resolved.
Show resolved
Hide resolved
|
||
This was suggested by `@mbargull`, but some community members (@baszalmstra, | ||
@wolfv) does not prefer post-link scripts as they can be used for arbitrary | ||
code execution. However in the author's opinion, this attack vector is not a | ||
new one since the install tool uses the python executable in the host | ||
environment to compile the python files. | ||
|
||
### `noarch: python` packages with `__linux, __osx, __win` constrains. | ||
|
||
This suggestion by `@wolfv` is not ideal as this clutters `noarch` subdir | ||
`repodata.json` file with packages that are useless for the platform in question. | ||
|
||
### A new `package_metadata_version` | ||
|
||
Since we can work within the constraints of the current install tools we | ||
do not need to require extra support from install tools. | ||
|
||
<!--links--> | ||
[C_API_Stability]: https://docs.python.org/3/c-api/stable.html | ||
|
||
[HPy]: https://hpyproject.org | ||
|
||
[python-pr-669]: https://github.com/conda-forge/python-feedstock/pull/669 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.