Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
os: ["ubuntu-16.04", "ubuntu-18.04", "ubuntu-20.04", "macos-latest"]
compiler: [gcc-7, gcc-9, gcc-10, clang]
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8"]
numpy-version: ["1.14", "1.16", "1.18"]
numpy-version: ["1.14", "1.18", "1.20"]
exclude:

# Only run with 'clang' on OSX
Expand Down Expand Up @@ -51,11 +51,7 @@ jobs:
- os: "macos-latest"
python-version: "3.8"

# No numpy1.16 for python3.5
- python-version: "3.5"
numpy-version: "1.16"

# numpy1.18 only on python3.8
# numpy1.18 and 1.20 only on python3.8
# (which, in turn, is only on '20.04')
- python-version: "2.7"
numpy-version: "1.18"
Expand All @@ -65,6 +61,14 @@ jobs:
numpy-version: "1.18"
- python-version: "3.7"
numpy-version: "1.18"
- python-version: "2.7"
numpy-version: "1.20"
- python-version: "3.5"
numpy-version: "1.20"
- python-version: "3.6"
numpy-version: "1.20"
- python-version: "3.7"
numpy-version: "1.20"

env:
CC: ${{ matrix.compiler }}
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Enhancements
- Gridlink (the binning of particles into cells) now uses a parallel algorithm for the theory module [#239]
- Add detection of known-bad Cray hugepages library at NERSC [#246]
- Replace ``np.float`` with ``np.float64`` to fix numpy 1.20 deprecation [#250]
- Test Numpy versions as old as 1.14 and recent as 1.20 [#251]

Bug fixes
---------
Expand Down