Skip to content

Commit 1d184e9

Browse files
committed
Updated dependencies
Added test build for Python 3.10 Split from PR coreruleset#66, part 2
1 parent 2bcb2f5 commit 1d184e9

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
python-version: [ '3.6', '3.7', '3.8', '3.9' ]
12+
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
1313

1414
steps:
1515
- name: Checkout repo
@@ -23,7 +23,7 @@ jobs:
2323
python -m pip install -r requirements.txt
2424
python setup.py install
2525
- name: Check source files
26-
if: matrix.python-version == '3.9'
26+
if: matrix.python-version == '3.10'
2727
run: |
2828
python -m pip install pytest-pycodestyle
2929
python -m pip install pytest-flakes

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Brotli==1.0.7
2-
IPy==0.83
3-
PyYAML==5.4
4-
pytest==4.6
5-
python-dateutil==2.6.0
1+
Brotli==1.0.9
2+
IPy==1.01
3+
PyYAML==6.0
4+
pytest==6.2.5
5+
python-dateutil==2.8.2

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
description-file = README.md
2+
description_file = README.md
33

44
[tool:pytest]
55
addopts = -s -v

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
3535
use_scm_version=True,
3636
setup_requires=['setuptools_scm'],
3737
install_requires=[
38-
'Brotli==1.0.7',
39-
'IPy==0.83',
40-
'PyYAML==5.4',
41-
'pytest==4.6',
42-
'python-dateutil==2.6.0'
38+
'Brotli==1.0.9',
39+
'IPy==1.01',
40+
'PyYAML==6.0',
41+
'pytest==6.2.5',
42+
'python-dateutil==2.8.2'
4343
],
4444
)

0 commit comments

Comments
 (0)