Skip to content

Commit a45ca21

Browse files
committed
1 parent 15f1713 commit a45ca21

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
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

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.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ def run_setup(with_extensions):
346346
ext_modules=ext_modules,
347347
cmdclass=cmdclass,
348348
package_dir={"": "."},
349-
python_requires=">=3.6, <4",
349+
python_requires=">=3.7, <4",
350350
packages=["numcodecs", "numcodecs.tests"],
351351
classifiers=[
352352
"Development Status :: 4 - Beta",
@@ -358,10 +358,10 @@ def run_setup(with_extensions):
358358
"Topic :: Software Development :: Libraries :: Python Modules",
359359
"Operating System :: Unix",
360360
"Programming Language :: Python :: 3",
361-
"Programming Language :: Python :: 3.6",
362361
"Programming Language :: Python :: 3.7",
363362
"Programming Language :: Python :: 3.8",
364363
"Programming Language :: Python :: 3.9",
364+
"Programming Language :: Python :: 3.10",
365365
],
366366
author='Alistair Miles',
367367
author_email='alimanfoo@googlemail.com',

0 commit comments

Comments
 (0)