Skip to content

Commit 556a90b

Browse files
committed
Drop support for Python 3.6.
1 parent 4f89b6e commit 556a90b

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
runs-on: ubuntu-latest
8383
strategy:
8484
matrix:
85-
python-version: [3.6, 3.7, 3.8]
85+
python-version: [3.7, 3.8]
8686
install-type: [dev]
8787
include:
8888
- python-version: 3.8

.github/workflows_source/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
runs-on: ubuntu-latest
7373
strategy:
7474
matrix:
75-
python-version: [3.6, 3.7, 3.8]
75+
python-version: [3.7, 3.8]
7676
install-type: [dev]
7777
include:
7878
- python-version: 3.8

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
repos:
22
- repo: https://github.com/asottile/pyupgrade
3-
rev: v2.7.2
3+
rev: v2.11.0
44
hooks:
55
- id: pyupgrade
6-
args: [--py36-plus]
6+
args: [--py37-plus]
77

88
- repo: https://github.com/psf/black
99
rev: 20.8b1

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,14 @@ classifiers =
1919
Natural Language :: English
2020
Operating System :: Unix
2121
Programming Language :: Python :: 3
22-
Programming Language :: Python :: 3.6
2322
Programming Language :: Python :: 3.7
2423
Programming Language :: Python :: 3.8
2524
Programming Language :: Python :: 3.9
2625
Intended Audience :: Science/Research
2726
Topic :: Scientific/Engineering :: Physics
2827

2928
[options]
30-
python_requires = >=3.6
29+
python_requires = >=3.7
3130
setup_requires =
3231
fastentrypoints
3332
install_requires =

0 commit comments

Comments
 (0)