Skip to content

Commit

Permalink
v0.15
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
fantix committed Feb 9, 2021
1 parent f0b4fd4 commit cbe80e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/build-manylinux-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ if [ "${PY_MAJOR}" -lt "4" -a "${PY_MINOR}" -lt "8" ]; then
ML_PYTHON_VERSION+="m"
fi

# Temporary workaround for https://github.com/actions/runner/issues/781
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib

# Compile wheels
PYTHON="/opt/python/${ML_PYTHON_VERSION}/bin/python"
PIP="/opt/python/${ML_PYTHON_VERSION}/bin/pip"
Expand Down
2 changes: 1 addition & 1 deletion immutables/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
# supported platforms, publish the packages on PyPI, merge the PR
# to the target branch, create a Git tag pointing to the commit.

__version__ = '0.14'
__version__ = '0.15'

0 comments on commit cbe80e7

Please sign in to comment.