Skip to content

Commit

Permalink
Getting ready for release 2.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Sep 25, 2023
1 parent 62aa9d8 commit 4d3a2d0
Show file tree
Hide file tree
Showing 4 changed files with 141 additions and 106 deletions.
61 changes: 31 additions & 30 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,34 +26,35 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
arch: [auto64]
cibw_build: ["cp3{7,8,9,10,11}-*"]
p_ver: ["3.7-3.11"]
include:
- arch: arm64
os: macos-latest
cibw_build: "cp3{7,8,9,10,11}-*"
p_ver: "3.7-3.11"
- arch: aarch64
os: ubuntu-latest
cibw_build: "cp37*"
p_ver: "3.7"
- arch: aarch64
os: ubuntu-latest
cibw_build: "cp38*"
p_ver: "3.8"
- arch: aarch64
os: ubuntu-latest
cibw_build: "cp39*"
p_ver: "3.9"
- arch: aarch64
os: ubuntu-latest
cibw_build: "cp310*"
p_ver: "3.10"
- arch: aarch64
os: ubuntu-latest
cibw_build: "cp311*"
p_ver: "3.11"
#arch: [auto64]
arch: [x86_64, aarch64]
cibw_build: ["cp3{9,10,11,12}-*"]
p_ver: ["3.9-3.12"]
# include:
# - arch: arm64
# os: macos-latest
# cibw_build: "cp3{9,10,11,12}-*"
# p_ver: "3.7-3.11"
# - arch: aarch64
# os: ubuntu-latest
# cibw_build: "cp39*"
# p_ver: "3.9"
# - arch: aarch64
# os: ubuntu-latest
# cibw_build: "cp39*"
# p_ver: "3.9"
# - arch: aarch64
# os: ubuntu-latest
# cibw_build: "cp39*"
# p_ver: "3.9"
# - arch: aarch64
# os: ubuntu-latest
# cibw_build: "cp310*"
# p_ver: "3.10"
# - arch: aarch64
# os: ubuntu-latest
# cibw_build: "cp311*"
# p_ver: "3.11"

steps:
- uses: actions/checkout@v3
Expand All @@ -70,11 +71,11 @@ jobs:
- uses: docker/setup-qemu-action@v2
if: ${{ matrix.arch == 'aarch64' }}
name: Set up QEMU

- name: Build wheels for Python
run: |
python -m cibuildwheel --output-dir wheelhouse
- name: Make sdist
if: ${{ matrix.os == 'windows-latest' }}
run: |
Expand Down
33 changes: 29 additions & 4 deletions ANNOUNCE.rst
Original file line number Diff line number Diff line change
@@ -1,15 +1,40 @@
========================
Announcing NumExpr 2.8.6
Announcing NumExpr 2.8.7
========================

Hi everyone,
Hi everyone,

...
NumExpr 2.8.7 is a release to deal with issues related to downstream `pandas`
and other projects where the sanitization blacklist was triggering issue in their
evaluate. Hopefully, the new sanitization code would be much more robust now.

For those who do not wish to have sanitization on by default, it can be changed
by setting an environment variable, `NUMEXPR_SANITIZE=0`.

If you use `pandas` in your packages it is advisable you pin

`numexpr >= 2.8.7`

in your requirements.

Project documentation is available at:

http://numexpr.readthedocs.io/

Changes from 2.8.5 to 2.8.6
---------------------------

** Under development **
* More permissive rules in sanitizing regular expression: allow to access digits
after the . with scientific notation. Thanks to Thomas Vincent.

* Don't reject double underscores that are not at the start or end of a variable
name (pandas uses those), or scientific-notation numbers with digits after the
decimal point. Thanks to Rebecca Palmer.

* Do not use `numpy.alltrue` in the test suite, as it has been deprecated
(replaced by `numpy.all`). Thanks to Rebecca Chen.

* Wheels for Python 3.12. Wheels for 3.7 and 3.8 are not generated anymore.

What's Numexpr?
---------------
Expand Down
Loading

0 comments on commit 4d3a2d0

Please sign in to comment.