File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -85,12 +85,12 @@ jobs:
85
85
strategy :
86
86
matrix :
87
87
os : [ubuntu-latest]
88
- version : ['3.9 ', '3.10 ']
88
+ version : ['3.10 ', '3.11 ']
89
89
include :
90
- - version : ' 3.9'
91
- tox-env : pypy39
92
90
- version : ' 3.10'
93
91
tox-env : pypy310
92
+ - version : ' 3.11'
93
+ tox-env : pypy311
94
94
steps :
95
95
- uses : actions/checkout@v4
96
96
- uses : actions/setup-python@v5
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
20
* Optimised mainstream seq-consuming functions by coercing their inputs into ` seq ` upfront (#1234 )
21
21
* Renamed ` awith ` and ` afor ` to ` with-async ` and ` for-async ` for improved clarity (#1248 )
22
22
* ` basilisp.main.init ` will only initialize the runtime environment on the first invocation (#1242 )
23
+ * Updated support for PyPy to 3.9 and 3.10 (#1265 )
23
24
24
25
### Fixed
25
26
* Fix a bug where protocols with methods with leading hyphens in the could not be defined (#1230 )
Original file line number Diff line number Diff line change 68
68
pypy-shell :
69
69
@docker run -it \
70
70
--mount src=` pwd` ,target=/usr/src/app,type=bind \
71
+ --mount src=" ${HOME} /.local/share/basilisp" ,target=" /root/.local/share/basilisp" ,type=bind \
71
72
--workdir /usr/src/app \
72
- pypy:3.10-7.3-slim-buster \
73
+ pypy:3.10-7.3-slim \
73
74
/bin/sh -c ' pip install -e . && basilisp repl'
Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ The following settings enable and disable warnings from the Basilisp compiler du
40
40
* Environment Variable: ``BASILISP_WARN_ON_ARITY_MISMATCH ``
41
41
* Default: ``true ``
42
42
43
-
44
43
* ``warn-on-shadowed-name `` - if ``true ``, emit warnings if a local name is shadowed by another local name
45
44
46
45
* Environment Variable: ``BASILISP_WARN_ON_SHADOWED_NAME ``
You can’t perform that action at this time.
0 commit comments