Skip to content

Commit 4bf6f2e

Browse files
authored
Remove support for PyPy 3.8 (#786)
1 parent ae360e5 commit 4bf6f2e

File tree

2 files changed

+8
-18
lines changed

2 files changed

+8
-18
lines changed

.circleci/config.yml

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,10 @@ commands:
1818
pip install -U pip virtualenv
1919
pip install tox
2020
21-
# All of a sudden, the venv generated by Poetry
22-
# installations for pypy 3.9 and 3.10 (but not 3.8),
23-
# located at /root/.local, lacks all the lib*.so
24-
# dependencies from the original pypy environment. To
25-
# address this issue, we ensure these libraries are
26-
# explicitly accessible in the LD_LIBRARY_PATH until a
21+
# All of a sudden, the venv generated by Poetry installations for pypy
22+
# 3.9 and 3.10 located at /root/.local, lacks all the lib*.so dependencies
23+
# from the original pypy environment. To address this issue, we ensure
24+
# these libraries are explicitly accessible in the LD_LIBRARY_PATH until a
2725
# resolution is implemented.
2826
mkdir -p /root/.local/lib
2927
ln -s /opt/pypy/lib/lib*.so.* /root/.local/lib
@@ -51,14 +49,6 @@ commands:
5149
path: junit
5250

5351
jobs:
54-
test-pypy-38:
55-
docker:
56-
- image: pypy:3.8-slim-buster
57-
parallelism: 8
58-
steps:
59-
- run_pypy_tests:
60-
python_version: "3.8"
61-
6252
test-pypy-39:
6353
docker:
6454
- image: pypy:3.9-slim-bookworm
@@ -79,6 +69,5 @@ workflows:
7969
version: 2
8070
test:
8171
jobs:
82-
- test-pypy-38
8372
- test-pypy-39
8473
- test-pypy-310

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
### Changed
1414
* Optimize calls to Python's `operator` module into their corresponding native operators (#754)
1515
* Allow vars to be callable to adhere to Clojure conventions (#767)
16-
* Adjust input path compatibility in basilisp.core/load input path to be relative to the namespace or the root path (#782)
16+
* Adjust input path compatibility in `basilisp.core/load` input path to be relative to the namespace or the root path (#782)
17+
* No longer warn on unused bindings when their name begins with `_` (#756)
1718

1819
### Fixed
1920
* Fix issue with `(count nil)` throwing an exception (#759)
@@ -23,8 +24,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2324
* Fix an issue where the constructors of types created by `deftype` and `defrecord` could not be called if they contained `-` characters (#777)
2425
* Fix issue with the variadic ampersand operator treated as a binding in macros (#772)
2526

26-
### Changed
27-
* Do not warn on unused bindings when their name begins with `_` (#756).
27+
### Removed
28+
* Removed support for PyPy 3.8 (#785)
2829

2930
## [v0.1.0b0]
3031
### Added

0 commit comments

Comments
 (0)