Skip to content

Commit 3446cff

Browse files
committed
dropping support to python 3.6 EOL
1 parent efabe3e commit 3446cff

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup Python
3232
uses: actions/setup-python@v3
3333
with:
34-
python-version: '3.6'
34+
python-version: '3.7'
3535

3636
- name: Install dependencies
3737
run: |

setup.py

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,20 @@
66

77
TESTS_REQUIRES = [
88
'flake8',
9-
'pytest==7.0.1',
10-
'pytest-mock==3.12.0',
11-
'coverage==6.2',
9+
'pytest==7.1.0',
10+
'pytest-mock==3.11.1',
11+
'coverage==7.3.0',
1212
'pytest-cov',
13-
'importlib-metadata==4.2',
14-
'tomli==1.2.3',
15-
'iniconfig==1.1.1',
16-
'attrs==22.1.0'
13+
'importlib-metadata==6.7',
14+
'tomli',
15+
'iniconfig',
16+
'attrs'
1717
]
1818

1919
INSTALL_REQUIRES = [
20-
'requests>=2.9.1',
21-
'pyyaml>=5.4',
20+
'requests',
21+
'pyyaml',
2222
'docopt>=0.6.2',
23-
'enum34;python_version<"3.4"',
2423
'bloom-filter2>=2.0.0'
2524
]
2625

0 commit comments

Comments
 (0)