Skip to content

Commit 09e9639

Browse files
Merge pull request #81 from source-foundry/remove-py36-support
Remove cPython 3.6 support
2 parents cf087b6 + 7cd1dd2 commit 09e9639

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.9]
15+
python-version: ["3.10"]
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/py-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest, macos-latest, windows-latest]
11-
python-version: [3.6, 3.7, 3.8, 3.9, pypy3]
11+
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.7"]
1212

1313
steps:
1414
- uses: actions/checkout@v2

.github/workflows/py-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
python-version: [3.9]
11+
python-version: ["3.10"]
1212

1313
steps:
1414
- uses: actions/checkout@v2

.github/workflows/py-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
python-version: [3.9]
11+
python-version: ["3.10"]
1212

1313
steps:
1414
- uses: actions/checkout@v2

.github/workflows/py-typecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
python-version: [3.9]
11+
python-version: ["3.10"]
1212

1313
steps:
1414
- uses: actions/checkout@v2

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
URL = "https://github.com/source-foundry/dehinter"
1111
1212
AUTHOR = "Source Foundry Authors and Contributors"
13-
REQUIRES_PYTHON = ">=3.6.0"
13+
REQUIRES_PYTHON = ">=3.7.0"
1414

1515
INSTALL_REQUIRES = [
1616
"fontTools",
@@ -80,9 +80,10 @@
8080
"Operating System :: OS Independent",
8181
"Programming Language :: Python",
8282
"Programming Language :: Python :: 3",
83-
"Programming Language :: Python :: 3.6",
8483
"Programming Language :: Python :: 3.7",
8584
"Programming Language :: Python :: 3.8",
85+
"Programming Language :: Python :: 3.9",
86+
"Programming Language :: Python :: 3.10",
8687
"Topic :: Text Processing :: Fonts",
8788
"Topic :: Multimedia :: Graphics",
8889
"Topic :: Multimedia :: Graphics :: Graphics Conversion",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py39
2+
envlist = py310
33

44
[testenv]
55
commands =

0 commit comments

Comments
 (0)