Skip to content

Commit

Permalink
update ci workflows and env file
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjonesBSU committed Jan 18, 2025
1 parent 2f09199 commit 9261d95
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-latest, macOS-13, ubuntu-latest]
os: [macos-14, ubuntu-24.04]
python-version: ['3.10', '3.11']

runs-on: ${{ matrix.os }}
Expand All @@ -44,7 +44,7 @@ jobs:
environment-file: environment-dev.yml
python-version: ${{ matrix.python-version }}
miniforge-variant: Mambaforge
miniforge-version: 4.9.2-4
#miniforge-version: 24.11.0
use-mamba: true

- name: Install package
Expand All @@ -63,7 +63,7 @@ jobs:

test-tutorials:
if: ${{ github.event.issue.pull_request && github.event.comment.body== '/testtutorials'}}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Put a reaction to the comment
run: gh api graphql --silent --raw-field query="mutation AddReaction {addReaction(input:{subjectId:\"$NODE_ID\",content:EYES}){reaction{content}subject{id}}}"
Expand Down Expand Up @@ -96,14 +96,14 @@ jobs:
PR_NUMBER: ${{ github.event.issue.number }}

- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build environment
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
environment-file: environment-dev.yml
miniforge-variant: Mambaforge
miniforge-version: 4.9.2-4
#miniforge-version: 24.11.0
use-mamba: true

- name: Install package
Expand Down
2 changes: 1 addition & 1 deletion environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies:
- gmso >=0.12.0
- gsd >=3.0
- grits >=0.5.0
- hoomd >=4.5
- hoomd >=4.5, <5.0
- mbuild >=0.17.0
- numpy <2.0
- openbabel >=3
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies:
- gmso >=0.12.0
- gsd >=3.0
- grits >=0.5.0
- hoomd >=4.5
- hoomd >=4.5, <5.0
- mbuild >=0.17.0
- numpy <2.0
- openbabel >=3
Expand Down

0 comments on commit 9261d95

Please sign in to comment.