Free-threaded CPython builds (i.e. python3.13t and the 3.13t ABI) are not currently supported.
In API mode, when you get a function from a C library by writing
fn = lib.myfunc, you get an object of a special type for performance
reasons, instead of a <cdata 'C-function-type'>. Before version 1.17
you could only call such objects. You could write
ffi.addressof(lib, "myfunc") in order to get a real <cdata> object,
based on the idea that in these cases in C you'd usually write &myfunc
instead of myfunc. In version 1.17, the special object
lib.myfunc can now be passed in many places where CFFI expects
a regular <cdata> object. For example, you can now pass
it as a callback to a C function call, or write it inside a C
structure field of the correct pointer-to-function type, or use
ffi.cast() or ffi.typeof() on it.
In API mode, when you get a function from a C library by writing fn = lib.myfunc, you get an object of a special type for performance reasons, instead of a object. For example, you can now pass it as a callback to a C function call, or write it inside a C structure field of the correct pointer-to-function type, or use ffi.cast() or ffi.typeof() on it.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Bumps the dependencies group with 6 updates in the / directory:
1.3.1
1.3.2
2024.7.4
2024.8.30
24.4.2
24.8.0
1.16.0
1.17.1
3.7
3.8
4.2.2
4.3.2
Updates
authlib
from 1.3.1 to 1.3.2Release notes
Sourced from authlib's releases.
Changelog
Sourced from authlib's changelog.
Commits
d7db2c3
chore: release 1.3.201f1243
Revert "fix encode_client_secret_basic to match rfc6749"63c9fb6
fix(oauth2): unquote username and password for basic auth66d5b19
docs: Update index.rst (#670)11f13e4
fix: Fix list of scopes in app integrations (#631)4da41da
Merge pull request #661 from Presence-AI/master01583a3
fix: use unique variable name when clearing old state data to avoid setting s...0ad753c
Merge pull request #644 from Wauplin/622-fix-ever-growing-session-cookie174248e
Merge pull request #656 from borislaviv/master341ce0e
Extract load_key construction to separate methodUpdates
certifi
from 2024.7.4 to 2024.8.30Commits
325c2fd
2024.08.30 (#304)d66bf5f
Bump actions/upload-artifact from 4.3.5 to 4.3.6 (#302)2150f23
Bump actions/upload-artifact from 4.3.4 to 4.3.5 (#301)fc9b771
Bump actions/setup-python from 5.1.0 to 5.1.1 (#300)965b239
Bump actions/download-artifact from 4.1.7 to 4.1.8 (#297)c1f50cc
Bump actions/upload-artifact from 4.3.3 to 4.3.4 (#296)Updates
black
from 24.4.2 to 24.8.0Release notes
Sourced from black's releases.
Changelog
Sourced from black's changelog.
Commits
b965c2a
Prepare release 24.8.0 (#4426)9ccf279
Documentfind_project_root
ignoringpyproject.toml
without[tool.black]
...14b6e61
fix: Enhace black efficiently to skip directories listed in .gitignore (#4415)b1c4dd9
fix: respect braces better in f-string parsing (#4422)4b4ae43
Fix incorrect linenos on fstring tokens with escaped newlines (#4423)7fa1faf
docs: fix the installation command of extra for blackd (#4413)8827acc
Bump sphinx from 7.3.7 to 7.4.0 in /docs (#4404)b0da11d
Bump furo from 2024.5.6 to 2024.7.18 in /docs (#4409)721dff5
fix: avoid formatting backslash strings inside f-strings (#4401)7e2afc9
Updateactions/checkout
to v4 to stop node deprecation warnings (#4379)Updates
cffi
from 1.16.0 to 1.17.1Release notes
Sourced from cffi's releases.
Commits
38bd6be
release 1.17.1ba10180
update whatsnew.rst for 1.17.1 (#121)61deb5f
add yet another flag to recompile() to avoid calling ffiplatform (#81)1c292c1
Handle distutils without distutils.msvc9compiler.MSVCCompiler class (#118)182ffc4
Allow writing generated code to a file-like object. (#115)74731f9
Release 1.17.0 (#108)181fa00
1.17.0rc1 release (#80)772528e
Add 3.13 to trove classifiers (#72)e36042d
1.17.0b1 prep (#79)39bdab2
avoid null-pointer-subtraction error (#78)Updates
idna
from 3.7 to 3.8Release notes
Sourced from idna's releases.
Changelog
Sourced from idna's changelog.
Commits
784c6f4
Release v3.828c7c9e
Typo fixa2b41c3
Pin remainder of Github Actions flagged in code scanning1f613c5
More Github Action dependency pinninga87e2b6
Update OSSF scorecard to latest version12d4dd1
Merge pull request #182 from kjd/github-pypi-actionse1a1541
Pin Github Actions dependenciesc109d3a
Merge branch 'master' into github-pypi-actionsf8a8de4
Do not try to build/send packages to TestPyPI for now613bdde
Update regexp to move global flag to start of expressionUpdates
platformdirs
from 4.2.2 to 4.3.2Release notes
Sourced from platformdirs's releases.
Commits
c596271
Fix multi-path returned from_path
methods on MacOS (#299)a420284
Use uv as installer (#300)49a89ef
Update README.rst4851532
Update README.rst330b272
Ensure PlatformDirs is valid superclass type for mypy AND not an abstract cla...1ca8592
Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.1 (#297)6ac03f5
[pre-commit.ci] pre-commit autoupdate (#293)9e539d7
Useinclude-hidden-files: true
to upload coverage artifacts (#298)6a0ff60
[pre-commit.ci] pre-commit autoupdate (#288)8f59e91
Test with latest PyPy (#290)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show