summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJules Chéron <jules.cheron@gmail.com>2022-01-16 14:45:38 +0100
committerJules Chéron <43635101+jules-ch@users.noreply.github.com>2022-02-04 17:43:06 +0100
commit2a3b7fdf9ace7760c6ef9d252178f10608600a28 (patch)
treeb84096f618810394d840c72ddf81c45514e1d620 /.github
parent8532f7760d393adea6f7b31eb0444fcc27b6d5b4 (diff)
downloadpint-2a3b7fdf9ace7760c6ef9d252178f10608600a28.tar.gz
Drop Support for Python 3.7
- Update CHANGES - Update README - Add black badge in README - Update Docs - Move pull request template to github folder - Update CI with minimal dependencies
Diffstat (limited to '.github')
-rw-r--r--.github/pull_request_template.md5
-rw-r--r--.github/workflows/ci.yml13
2 files changed, 10 insertions, 8 deletions
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
new file mode 100644
index 0000000..8ee5e75
--- /dev/null
+++ b/.github/pull_request_template.md
@@ -0,0 +1,5 @@
+- [ ] Closes # (insert issue number)
+- [ ] Executed ``pre-commit run --all-files`` with no errors
+- [ ] The change is fully covered by automated unit tests
+- [ ] Documented in docs/ as appropriate
+- [ ] Added an entry to the CHANGES file
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 35de47f..5d2ab6a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -7,21 +7,18 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version: [3.7, 3.8, 3.9]
- numpy: [null, "numpy>=1.17,<2.0.0"]
- uncertainties: [null, "uncertainties==3.1.4", "uncertainties>=3.1.4,<4.0.0"]
+ python-version: [3.8, 3.9, "3.10"]
+ numpy: [null, "numpy>=1.19.5,<2.0.0"]
+ uncertainties: [null, "uncertainties==3.1.6", "uncertainties>=3.1.6,<4.0.0"]
extras: [null]
include:
- - python-version: 3.7 # Minimal versions
- numpy: numpy==1.17.5
+ - python-version: 3.8 # Minimal versions
+ numpy: numpy==1.19.5
extras: matplotlib==2.2.5
- python-version: 3.8
numpy: "numpy"
uncertainties: "uncertainties"
extras: "sparse xarray netCDF4 dask[complete] graphviz babel==2.8"
- - python-version: "3.10"
- numpy: null
- extras: null
runs-on: ubuntu-latest
env: