Skip to content

Bump PyPy version support to 3.9 and 3.10 #1265

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

Merged
merged 2 commits into from
Jun 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
version: ['3.9', '3.10']
version: ['3.10', '3.11']
include:
- version: '3.9'
tox-env: pypy39
- version: '3.10'
tox-env: pypy310
- version: '3.11'
tox-env: pypy311
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Optimised mainstream seq-consuming functions by coercing their inputs into `seq` upfront (#1234)
* Renamed `awith` and `afor` to `with-async` and `for-async` for improved clarity (#1248)
* `basilisp.main.init` will only initialize the runtime environment on the first invocation (#1242)
* Updated support for PyPy to 3.9 and 3.10 (#1265)

### Fixed
* Fix a bug where protocols with methods with leading hyphens in the could not be defined (#1230)
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ clean:
pypy-shell:
@docker run -it \
--mount src=`pwd`,target=/usr/src/app,type=bind \
--mount src="${HOME}/.local/share/basilisp",target="/root/.local/share/basilisp",type=bind \
--workdir /usr/src/app \
pypy:3.10-7.3-slim-buster \
pypy:3.10-7.3-slim \
/bin/sh -c 'pip install -e . && basilisp repl'
1 change: 0 additions & 1 deletion docs/compiler.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ The following settings enable and disable warnings from the Basilisp compiler du
* Environment Variable: ``BASILISP_WARN_ON_ARITY_MISMATCH``
* Default: ``true``


* ``warn-on-shadowed-name`` - if ``true``, emit warnings if a local name is shadowed by another local name

* Environment Variable: ``BASILISP_WARN_ON_SHADOWED_NAME``
Expand Down