Skip to content

Commit 581848e

Browse files
authored
Drop Python 3.6 (#318)
1 parent 15f1713 commit 581848e

File tree

8 files changed

+144
-138
lines changed

8 files changed

+144
-138
lines changed

.github/workflows/ci-linux.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
11+
python-version: ["3.7", "3.8", "3.9", "3.10"]
1212
os: [ubuntu-18.04, ubuntu-20.04]
1313

1414
steps:

.github/workflows/ci-osx.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
11+
python-version: ["3.7", "3.8", "3.9", "3.10"]
1212

1313
steps:
1414
- name: Checkout source

.github/workflows/ci-windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
11+
python-version: ["3.7", "3.8", "3.9", "3.10"]
1212

1313
steps:
1414
- name: Checkout source

.github/workflows/wheel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
env:
1414
CIBW_TEST_COMMAND: pytest --pyargs numcodecs
1515
CIBW_TEST_REQUIRES: pytest
16-
CIBW_SKIP: "pp*"
16+
CIBW_SKIP: "pp* cp36-*"
1717
CIBW_ENVIRONMENT: "DISABLE_NUMCODECS_AVX2=1"
1818
CIBW_ENVIRONMENT_MACOS: 'MACOSX_DEPLOYMENT_TARGET=10.9 DISABLE_NUMCODECS_AVX2=1 CFLAGS="$CFLAGS -Wno-implicit-function-declaration"'
1919

docs/contributing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ a bug report:
4343
interpreter can be obtained by running a Python interactive session, e.g.::
4444

4545
$ python
46-
Python 3.6.1 (default, Mar 22 2017, 06:17:05)
47-
[GCC 6.3.0 20170321] on linux
46+
Python 3.7.6 (default, Jan 8 2020, 13:42:34)
47+
[Clang 4.0.1 (tags/RELEASE_401/final)] :: Anaconda, Inc. on darwin
4848

4949
3. An explanation of why the current behaviour is wrong/not desired, and what you
5050
expect instead.

docs/release.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ Unreleased
3636
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>`,
3737
:issue:`295`, :issue:`294`, :issue:`293`, and :issue:`292`.
3838

39+
* Drop Python 3.6
40+
By :user:`Josh Moore <joshmoore>`, :issue:`318`.
41+
3942
.. _release_0.9.1:
4043

4144
0.9.1

0 commit comments

Comments
 (0)