File tree Expand file tree Collapse file tree 2 files changed +8
-18
lines changed Expand file tree Collapse file tree 2 files changed +8
-18
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,10 @@ commands:
18
18
pip install -U pip virtualenv
19
19
pip install tox
20
20
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
27
25
# resolution is implemented.
28
26
mkdir -p /root/.local/lib
29
27
ln -s /opt/pypy/lib/lib*.so.* /root/.local/lib
@@ -51,14 +49,6 @@ commands:
51
49
path : junit
52
50
53
51
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
-
62
52
test-pypy-39 :
63
53
docker :
64
54
- image : pypy:3.9-slim-bookworm
@@ -79,6 +69,5 @@ workflows:
79
69
version : 2
80
70
test :
81
71
jobs :
82
- - test-pypy-38
83
72
- test-pypy-39
84
73
- test-pypy-310
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
### Changed
14
14
* Optimize calls to Python's ` operator ` module into their corresponding native operators (#754 )
15
15
* 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 )
17
18
18
19
### Fixed
19
20
* 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
23
24
* Fix an issue where the constructors of types created by ` deftype ` and ` defrecord ` could not be called if they contained ` - ` characters (#777 )
24
25
* Fix issue with the variadic ampersand operator treated as a binding in macros (#772 )
25
26
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 )
28
29
29
30
## [ v0.1.0b0]
30
31
### Added
You can’t perform that action at this time.
0 commit comments