summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHernan Grecco <hgrecco@gmail.com>2023-04-29 19:10:38 -0300
committerHernan Grecco <hgrecco@gmail.com>2023-04-29 19:20:18 -0300
commit1208b3d503913eabe8ac96db18ee2ad14af1bdd6 (patch)
treebca861cc05cfd773dbeb4d248dde5d04f0e74c5d /.github
parentf3f2158ac7600e26a32141ec5da7cc69dfb461d7 (diff)
downloadpint-1208b3d503913eabe8ac96db18ee2ad14af1bdd6.tar.gz
Apply NEP-29: Pint now requires Python 3.9+ and NumPy 1.21+
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml16
-rw-r--r--.github/workflows/docs.yml4
2 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 369b9b9..e73a8c8 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -7,15 +7,15 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version: [3.8, 3.9, "3.10", "3.11"]
- numpy: [null, "numpy>=1.19,<2.0.0"]
+ python-version: [3.9, "3.10", "3.11"]
+ numpy: [null, "numpy>=1.21,<2.0.0"]
uncertainties: [null, "uncertainties==3.1.6", "uncertainties>=3.1.6,<4.0.0"]
extras: [null]
include:
- - python-version: 3.8 # Minimal versions
+ - python-version: 3.9 # Minimal versions
numpy: "numpy"
extras: matplotlib==2.2.5
- - python-version: 3.8
+ - python-version: 3.9
numpy: "numpy"
uncertainties: "uncertainties"
extras: "sparse xarray netCDF4 dask[complete]==2023.4.0 graphviz babel==2.8"
@@ -92,8 +92,8 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version: [3.8, 3.9, "3.10", "3.11"]
- numpy: [ "numpy>=1.19,<2.0.0" ]
+ python-version: [3.9, "3.10", "3.11"]
+ numpy: [ "numpy>=1.21,<2.0.0" ]
runs-on: windows-latest
env:
@@ -153,8 +153,8 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version: [3.8, 3.9, "3.10", "3.11"]
- numpy: [null, "numpy>=1.19,<2.0.0" ]
+ python-version: [3.9, "3.10", "3.11"]
+ numpy: [null, "numpy>=1.21,<2.0.0" ]
runs-on: macos-latest
env:
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index 2340683..0a26da8 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -14,10 +14,10 @@ jobs:
- name: Get tags
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- - name: Set up Python 3.8
+ - name: Set up minimal Python version
uses: actions/setup-python@v2
with:
- python-version: 3.8
+ python-version: 3.9
- name: Get pip cache dir
id: pip-cache