Merge pull request #21 from soxoj/support-3.6

Fixed python 3.6 support
This commit is contained in:
soxoj
2021-01-11 22:18:55 +03:00
committed by GitHub
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: [3.7, 3.8, 3.9] python-version: [3.6, 3.7, 3.8, 3.9]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
+1 -1
View File
@@ -1,5 +1,5 @@
# -*- coding: future_annotations -*-
"""Maigret Sites Information""" """Maigret Sites Information"""
from __future__ import annotations
import copy import copy
import json import json
import operator import operator
+1
View File
@@ -9,6 +9,7 @@ certifi==2020.12.5
chardet==3.0.4 chardet==3.0.4
colorama==0.4.4 colorama==0.4.4
future==0.18.2 future==0.18.2
future-annotations==1.0.0
html5lib==1.1 html5lib==1.1
idna==2.10 idna==2.10
Jinja2==2.11.2 Jinja2==2.11.2