Skip to content

Commit 357c130

Browse files
authored
Merge pull request #81 from maxmind/greg/fix-mypy
Add missing mypy types
2 parents f39902f + 2c3b10b commit 357c130

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
@@ -17,12 +17,12 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v2
1919
with:
20-
python-version: 3.8
20+
python-version: 3.9
2121

2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
25-
pip install --upgrade pylint black mypy voluptuous-stubs
25+
pip install --upgrade pylint black mypy voluptuous-stubs types-maxminddb
2626
2727
- name: Install
2828
run: python setup.py install

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ def run_setup(with_cext):
126126
"Programming Language :: Python :: 3.6",
127127
"Programming Language :: Python :: 3.7",
128128
"Programming Language :: Python :: 3.8",
129+
"Programming Language :: Python :: 3.9",
129130
"Programming Language :: Python",
130131
"Topic :: Internet :: Proxy Servers",
131132
"Topic :: Internet",

0 commit comments

Comments
 (0)