Skip to content
Closed
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
14 changes: 7 additions & 7 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
python-version: ["3.9"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Test
Expand All @@ -31,7 +31,7 @@ jobs:
coverage run -m unittest discover
coverage json
- name: Upload coverage artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: coverage_artifact
path: coverage.json
Expand All @@ -40,9 +40,9 @@ jobs:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download coverage artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: coverage_artifact
- name: Check coverage
Expand All @@ -54,9 +54,9 @@ jobs:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Run submission check
Expand Down
7 changes: 5 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
pytest
coverage==6.4.3
wheel==0.37.1
monty==2022.4.26
# Matminer and pymatgen installed by matbench require a current Monty. The
# previous 2022 pin downgraded the compatible version selected by pip and made
# both the test and benchmark-submission jobs fail during import.
monty>=2024.7.29
isort==5.10.1
black==22.3.0
flake8==4.0.1
flake8==4.0.1
Loading