Skip to content

Commit

Permalink
Merge pull request #16 from nasa/update-workflows
Browse files Browse the repository at this point in the history
Bump upload-artifact and python versions
  • Loading branch information
ixjlyons authored Dec 20, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 47fd8d4 + f5aaa55 commit 70754e6
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.8'
python-version: '3.11'

- name: Install dependencies
run: |
@@ -30,7 +30,7 @@ jobs:
make html
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: docs
path: ./docs/_build/
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
@@ -35,7 +35,7 @@ jobs:
- name: Upload artifact
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test_failures_${{ matrix.os }}_${{ matrix.python-version }}
path: ./regression_data/*_fail.npz
3 changes: 3 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -61,6 +61,9 @@
},
}

# ignore warning about unpicklable object in sphinx_gallery_conf
suppress_warnings = ["config.cache"]


# -- Options for HTML output -------------------------------------------------

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@
license="NASA Open Source Agreement Version 1.3",
python_requires=">=3",
install_requires=[
"numpy>=1.11.3",
"numpy>=1.11.3,<2",
"scipy>=0.18.1",
"simupy>=1.1.2",
"pyerfa",

0 comments on commit 70754e6

Please sign in to comment.