MNT: drop deprecated License classifier, update related metadata (PEP 639) #508
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| tests: | |
| uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@930ac90540ecc5f43ba6d3d176efd25cd5f3c6c2 # v2.2.2 | |
| with: | |
| posargs: --openmp-expected=True | |
| coverage: codecov | |
| envs: | | |
| # Code style | |
| - linux: style | |
| # Standard tests | |
| - linux: py310-test-oldestdeps | |
| - linux: py311-test | |
| - linux: py312-test | |
| - linux: py313-test | |
| - linux: py313-test-devdeps | |
| - macos: py312-test | |
| posargs: --openmp-expected=False | |
| - macos: py313-test-devdeps | |
| posargs: --openmp-expected=False | |
| - windows: py310-test | |
| - windows: py312-test-devdeps | |
| # Test with more compilers, for the OpenMP helpers | |
| - macos: py313-test-osxclang-conda | |
| runs-on: macos-14 | |
| coverage: '' | |
| - linux: py310-test-linuxgcc-conda | |
| coverage: '' | |
| # Test downstream packages | |
| - linux: py313-downstream | |
| publish: | |
| needs: tests | |
| uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@930ac90540ecc5f43ba6d3d176efd25cd5f3c6c2 # v2.2.2 | |
| with: | |
| test_extras: test | |
| test_command: pytest --pyargs extension_helpers | |
| secrets: | |
| pypi_token: ${{ secrets.PYPI_TOKEN }} |