Skip to content
Merged
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
20 changes: 10 additions & 10 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu, ] # macos, windows] # Only Linux currently.
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13", "3.14"]

env:
# Used for coveralls flag
Expand All @@ -37,7 +37,7 @@ jobs:

# Checks-out your repository under $GITHUB_WORKSPACE
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6.0.1
with:
# Need to fetch more than the last commit so that setuptools_scm can
# create the correct version string. If the number of commits since
Expand All @@ -53,7 +53,7 @@ jobs:
run: git fetch origin 'refs/tags/*:refs/tags/*'

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6.1.0
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -69,7 +69,7 @@ jobs:
run: pytest --cov=pyfftlog

- name: Coveralls
# [pin @develop@20230609]
# [pin @develop@20240509]
uses: AndreMiras/coveralls-python-action@65c1672f0b8a201702d86c81b79187df74072505
with:
parallel: true
Expand All @@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
# [pin @develop@20230609]
# [pin @develop@20240509]
uses: AndreMiras/coveralls-python-action@65c1672f0b8a201702d86c81b79187df74072505
with:
parallel-finished: true
Expand All @@ -96,7 +96,7 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6.0.1
with:
# Need to fetch more than the last commit so that setuptools_scm can
# create the correct version string. If the number of commits since
Expand All @@ -112,9 +112,9 @@ jobs:
run: git fetch origin 'refs/tags/*:refs/tags/*'

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6.1.0
with:
python-version: "3.12"
python-version: "3.13"

- name: Install dependencies
run: |
Expand All @@ -139,7 +139,7 @@ jobs:

- name: Publish to Test PyPI
if: success()
uses: pypa/gh-action-pypi-publish@release/v1
uses: pypa/gh-action-pypi-publish@release/v1.13.0
with:
user: __token__
password: ${{ secrets.TEST_PYPI_PASSWORD }}
Expand All @@ -151,7 +151,7 @@ jobs:
- name: Publish to PyPI
# Only for releases
if: success() && github.event_name == 'release'
uses: pypa/gh-action-pypi-publish@release/v1
uses: pypa/gh-action-pypi-publish@release/v1.13.0
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}