summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJules Chéron <jules.cheron@gmail.com>2021-06-02 21:35:19 +0200
committerJules Chéron <jules.cheron@gmail.com>2021-06-12 22:32:03 +0200
commitde79c45c115493f542a6e308f8834bfdc1736c85 (patch)
tree8af3f9d925ecea01f6d9e07ae951b7e60b11215c /.github
parentcdf0a50f49c6ad55a77b312166d3803f17d3e618 (diff)
downloadpint-de79c45c115493f542a6e308f8834bfdc1736c85.tar.gz
Drop support for Python 3.6
Update documentation & function supporting Python 3.6 - remove importlib_resources backport - Update minimal version numpy to 1.17 - Drop python 3.6 in ci.yml - remove condition on numpy version for __matmul__ - Numpy `__array_function__` is enabled by default in numpy>1.17
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c4fffdf..32485f7 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -6,13 +6,13 @@ jobs:
test-linux:
strategy:
matrix:
- python-version: [3.6, 3.7, 3.8]
- numpy: [null, "numpy>=1.14,<2.0.0"]
+ python-version: [3.7, 3.8]
+ numpy: [null, "numpy>=1.17,<2.0.0"]
uncertainties: [null, "uncertainties==3.0.1", "uncertainties>=3.0.1,<4.0.0"]
extras: [null]
include:
- - python-version: 3.6
- numpy: numpy==1.14.6
+ - python-version: 3.7
+ numpy: numpy==1.17.5
extras: matplotlib==2.2.5
- python-version: 3.8
numpy: "numpy"