Skip to content

Commit fcf1701

Browse files
authored
Increase minimal python version test to 3.7 (#91)
* Increase minimal python version test to 3.7 * Adjust netCDF4 version for py<3.8 due to wheel availability * Bump version number
1 parent 1f6a280 commit fcf1701

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
python-version: ["3.6", "3.10"]
27+
python-version: ["3.7", "3.10"]
2828
runs-on: [ubuntu-latest, macos-latest, windows-latest]
2929
steps:
3030
- uses: actions/checkout@v2

.github/workflows/test-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ["3.6", "3.10"]
16+
python-version: ["3.7", "3.10"]
1717
runs-on: [ubuntu-latest, macos-latest, windows-latest]
1818
steps:
1919
- uses: actions/checkout@v2

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ dynamic = ["version"]
3838
dependencies = [
3939
"cdflib >= 0.3.9",
4040
"Jinja2 >= 2.10",
41-
"netCDF4 >= 1.5.3",
41+
"netCDF4 >= 1.5.3; python_version>='3.8'",
42+
"netCDF4 >= 1.5.3, <= 1.5.8; python_version<='3.7'",
4243
"pandas >= 0.18",
4344
"requests >= 2.0.0",
4445
"tables >= 3.4.4",

src/viresclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@
3535
from ._config import ClientConfig, set_token
3636
from ._data_handling import ReturnedData, ReturnedDataFile
3737

38-
__version__ = "0.11.1"
38+
__version__ = "0.11.2-a1"

0 commit comments

Comments
 (0)