Skip to content

Commit cbe80e7

Browse files
committed
v0.15
New Features * Add support for Python 3.10 and more tests (by @vstinner in 45105ec for #46, @hukkinj1 in d7f3eeb, f0b4fd4) * Make __repr__ more similar to other mapping types (by @ofek in 8af1502 for #17) Misc * Minor docs and CI fixes (by @MisterKeefe in 76e491c for #32, @fantix in 1282379 for #39)
1 parent f0b4fd4 commit cbe80e7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/build-manylinux-wheels.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ if [ "${PY_MAJOR}" -lt "4" -a "${PY_MINOR}" -lt "8" ]; then
1010
ML_PYTHON_VERSION+="m"
1111
fi
1212

13+
# Temporary workaround for https://github.com/actions/runner/issues/781
14+
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib
15+
1316
# Compile wheels
1417
PYTHON="/opt/python/${ML_PYTHON_VERSION}/bin/python"
1518
PIP="/opt/python/${ML_PYTHON_VERSION}/bin/pip"

immutables/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
# supported platforms, publish the packages on PyPI, merge the PR
1111
# to the target branch, create a Git tag pointing to the commit.
1212

13-
__version__ = '0.14'
13+
__version__ = '0.15'

0 commit comments

Comments
 (0)