Skip to content

Commit 995c746

Browse files
committed
Add thorough type annotations
This effectively bumps the required Python version to 3.7.x due to the use of `from __future__ import annotations`, but in return we get static type validation and potential for mypycification.
1 parent e194a29 commit 995c746

File tree

13 files changed

+727
-535
lines changed

13 files changed

+727
-535
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0-rc.1]
18+
python-version: [3.7, 3.8, 3.9, 3.10.0-rc.1]
1919

2020
env:
2121
PIP_DISABLE_PIP_VERSION_CHECK: 1

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include LICENSE* README.rst
2+
include parsing/py.typed

0 commit comments

Comments
 (0)