Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try adding py 3.10 to actions, just to see what happens #694

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 11 additions & 2 deletions .github/workflows/libE-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.6, 3.7, 3.8, 3.9, '3.10']
comms-type: [m, l, t]
exclude:
- os: macos-latest
Expand Down Expand Up @@ -56,9 +56,13 @@ jobs:
sudo apt-get install octave
sudo apt-get install bc

- name: Install nlopt, scipy, mpich, mpi4py, blas, psutil
- name: Install nlopt
if: matrix.python-version != '3.10'
run: |
conda install nlopt

- name: Install scipy, mpich, mpi4py, blas, psutil
run: |
conda install scipy
conda install mpich
conda install mpi4py
Expand Down Expand Up @@ -121,6 +125,11 @@ jobs:
run: |
./libensemble/tests/run-tests.sh -e -A "-W error" -z -${{ matrix.comms-type }}

- name: Run tests, Python 3.10
if: ${{ matrix.python_version == '3.10' && matrix.os == 'ubuntu-latest' }}
run: |
./libensemble/tests/run-tests.sh -A "-W error" -z -${{ matrix.comms-type }}

- name: Merge coverage, run Coveralls
env:
COVERALLS_PARALLEL: true
Expand Down