Skip to content

Commit 75c0948

Browse files
Merge pull request #157 from source-foundry/drop-py36
Drop Python 3.6 support
2 parents 2e79469 + d2c34c8 commit 75c0948

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.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]
11+
python-version: ["3.7", "3.8", "3.9", "3.10"]
1212

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

setup.py

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

1515
INSTALL_REQUIRES = [
1616
"fontTools >= 4.0.0",
@@ -83,8 +83,10 @@
8383
"Operating System :: OS Independent",
8484
"Programming Language :: Python",
8585
"Programming Language :: Python :: 3",
86-
"Programming Language :: Python :: 3.6",
8786
"Programming Language :: Python :: 3.7",
87+
"Programming Language :: Python :: 3.8",
88+
"Programming Language :: Python :: 3.9",
89+
"Programming Language :: Python :: 3.10",
8890
"Topic :: Multimedia",
8991
],
9092
)

0 commit comments

Comments
 (0)