Skip to content

Commit

Permalink
Merge pull request #100 from ngoldbaum/pyo3-0.23
Browse files Browse the repository at this point in the history
update rpds.py for PyO3 0.23
  • Loading branch information
Julian authored Nov 16, 2024
2 parents 8e2256b + ec3c899 commit 2d2de0b
Show file tree
Hide file tree
Showing 5 changed files with 157 additions and 124 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,15 @@ jobs:
run: brew install enchant
if: runner.os == 'macOS' && startsWith(matrix.noxenv, 'docs')
- name: Set up Python
uses: actions/setup-python@v5
uses: quansight-labs/setup-python@v5
with:
python-version: |
3.9
3.10
3.11
3.12
3.13
3.13t
pypy3.9
pypy3.10
allow-prereleases: true
Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ rpds = "1.1.0"
archery = "1.2.1"

[dependencies.pyo3]
version = "0.22.6"
version = "0.23.0"
# To build extension for PyPy on Windows, "generate-import-lib" is needed:
# https://github.com/PyO3/maturin-action/issues/267#issuecomment-2106844429
features = ["extension-module", "generate-import-lib"]
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
(path.parent / f"{path.stem}.in", path) for path in REQUIREMENTS.values()
]

SUPPORTED = ["3.9", "3.10", "pypy3.10", "3.11", "3.12", "3.13"]
SUPPORTED = ["3.9", "3.10", "pypy3.10", "3.11", "3.12", "3.13", "3.13t"]
LATEST = "3.13"

nox.options.default_venv_backend = "uv|virtualenv"
Expand Down
Loading

0 comments on commit 2d2de0b

Please sign in to comment.