Skip to content

Commit 5512625

Browse files
Update CI to use Python 3.8 through 3.10 (#386)
* Try to build on Python 3.8 and 3.9 * Delete .travis.yml * Update ci.yaml * Don't duplicate CI runs on push and pull_request * Update Python versions following NEP 29 * Unpin actions versions * Include version targets as they are required * Turn off macOS + Python 3.10 tests * Cleanup
1 parent 5edae4c commit 5512625

File tree

2 files changed

+6
-22
lines changed

2 files changed

+6
-22
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
os: [macOS-latest, ubuntu-latest]
14-
python-version: [3.6, 3.7]
14+
python-version: ["3.8", "3.9", "3.10"]
15+
exclude:
16+
# These OpenMM builds are broken as of 8/2022
17+
- os: macOS-latest
18+
python-version: "3.10"
1519
env:
1620
CI_OS: ${{ matrix.os }}
1721
PYVER: ${{ matrix.python-version }}
1822

1923
steps:
20-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2125

2226
- uses: conda-incubator/setup-miniconda@v2
2327
with:

.travis.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)