Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 57247d4

Browse files
committed
mnt: test python 3.14, drop python < 3.10
1 parent f402cc3 commit 57247d4

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@ jobs:
77
strategy:
88
matrix:
99
python-version:
10-
- '3.8'
11-
- '3.9'
1210
- '3.10'
1311
- '3.11'
1412
- '3.12'
1513
- '3.13'
14+
- '3.14'
1615
steps:
1716
- uses: actions/checkout@v6
1817
- uses: actions/setup-python@v6
@@ -23,7 +22,7 @@ jobs:
2322
python -m pip install .[tests]
2423
- name: Run Tests
2524
run: |
26-
if [[ ${{ matrix.python-version }} == "3.13" ]]; then
25+
if [[ ${{ matrix.python-version }} == "3.14" ]]; then
2726
# For one of the python versions, check code coverage during pytest
2827
pip install .[codecov]
2928
python -m pytest --cov metar
@@ -38,7 +37,7 @@ jobs:
3837
runs-on: ubuntu-latest
3938
strategy:
4039
matrix:
41-
python-version: ["3.13"]
40+
python-version: ["3.14"]
4241
steps:
4342
- uses: actions/checkout@v6
4443
- uses: actions/setup-python@v6

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ METAR: METAR KEWR 111851Z VRB03G19KT 2SM R04R/3000VP6000FT TSRA BR FEW015 BKN040
137137
Tests
138138
------------------------------------------------------------------------
139139

140-
The library is tested against Python 3.8-3.13.
140+
The library is tested against Python 3.10-3.14.
141141

142142
A [tox](https://tox.readthedocs.io/en/latest/)
143143
configuration file is included to easily run tests against each of these
@@ -147,4 +147,4 @@ environments. To run tests against all environments, install tox and run:
147147

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

150-
>>> tox -e py35
150+
>>> tox -e py310

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = [
88
]
99
license = {file = "LICENSE"}
1010

11-
requires-python = ">= 3.8"
11+
requires-python = ">= 3.10"
1212
readme = "README.md"
1313
classifiers = [
1414
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)