Skip to content

Commit 3142a83

Browse files
authored
Merge pull request #111 from maxmind/greg/fix-mypy
Install missing mypy types
2 parents 00607ba + eb69ce8 commit 3142a83

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v2
2121
with:
22-
python-version: 3.8
22+
python-version: 3.9
2323

2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
pip install --upgrade pylint black mypy voluptuous-stubs chardet==3.0.4
27+
pip install --upgrade pylint black mypy voluptuous-stubs chardet==3.0.4 types-requests types-maxminddb
2828
2929
- name: Install
3030
run: python setup.py install

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"Programming Language :: Python :: 3.6",
4040
"Programming Language :: Python :: 3.7",
4141
"Programming Language :: Python :: 3.8",
42+
"Programming Language :: Python :: 3.9",
4243
"Programming Language :: Python",
4344
"Topic :: Internet :: Proxy Servers",
4445
"Topic :: Internet",

0 commit comments

Comments
 (0)