Skip to content

Commit 37b5fc3

Browse files
committed
drop py3.6 interpreter support
Dropped by the fontTools dependency
1 parent fad1442 commit 37b5fc3

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ font-line is a libre, open source command line tool for OpenType vertical metric
2626

2727
## Install
2828

29-
font-line is built with Python and is tested with Python 3.6+ interpreters. You can verify your installed Python version on the command line with the command:
29+
font-line is built with Python and supports Python 3.7+ interpreters. Check your installed Python version on the command line with the command:
3030

3131
```
3232
$ python3 --version
@@ -166,7 +166,7 @@ Unix/Linux/OS X users can write this report to a file with the `>` command line
166166
$ font-line report TheFont.ttf > font-report.txt
167167
```
168168

169-
You can modify the `font-report.txt` file path above to the file path string of your choice.
169+
Modify the `font-report.txt` file path above to the file path string of your choice.
170170

171171
#### Baseline to Baseline Distance Calculations
172172

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
import sys
55
from setuptools import setup, find_packages
66

7+
REQUIRES_PYTHON = ">=3.7.0"
8+
79

810
# Use repository Markdown README.md for PyPI long description
911
try:
@@ -51,6 +53,7 @@ def version_read():
5153
author="Christopher Simpkins",
5254
author_email="[email protected]",
5355
platforms=["any"],
56+
python_requires=REQUIRES_PYTHON,
5457
packages=find_packages("lib"),
5558
package_dir={"": "lib"},
5659
install_requires=["commandlines", "standardstreams", "fontTools"],
@@ -66,10 +69,10 @@ def version_read():
6669
"Operating System :: OS Independent",
6770
"Programming Language :: Python",
6871
"Programming Language :: Python :: 3",
69-
"Programming Language :: Python :: 3.6",
7072
"Programming Language :: Python :: 3.7",
7173
"Programming Language :: Python :: 3.8",
7274
"Programming Language :: Python :: 3.9",
75+
"Programming Language :: Python :: 3.10",
7376
"Topic :: Software Development :: Libraries :: Python Modules",
7477
],
7578
)

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37
2+
envlist = py310
33

44
[testenv]
55
commands =

0 commit comments

Comments
 (0)