8000 CI: pull tested python versions forward by akrherz · Pull Request #184 · python-metar/python-metar · GitHub
[go: up one dir, main page]

Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter 8000

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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12-dev'
- '3.12'
- '3.13'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -25,7 +25,7 @@ jobs:
run: |
python -m pip install pytest pytest-runner pytest-cov pytest-runner
python setup.py test --addopts " --cov=metar"
if [[ ${{ matrix.python-version }} == "3.8" ]]; then
if [[ ${{ matrix.python-version }} == "3.9" ]]; then
pip install codecov
codecov
fi
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,12 @@ METAR: METAR KEWR 111851Z VRB03G19KT 2SM R04R/3000VP6000FT TSRA BR FEW015 BKN040
Tests
------------------------------------------------------------------------

The library is tested against Python 3.7-3.10. A [tox](https://tox.readthedocs.io/en/latest/)
The library is tested against Python 3.9-3.13. A [tox](https://tox.readthedocs.io/en/latest/)
configuration file is included to easily run tests against each of these
environments. To run tests against all environments, install tox and run:

>>> tox

To run against a specific environment, use the `-e` flag:

>>> tox -e py35
>>> tox -e py310
0