Skip to content

Commit

Permalink
Merge pull request #69 from theseion/performance-improvement-dependen…
Browse files Browse the repository at this point in the history
…cy-updates

Updated dependencies
  • Loading branch information
fzipi committed Mar 9, 2022
2 parents 5daacce + 8872cab commit 2ea3270
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
python-version: [ '3.6', '3.7', '3.8', '3.9' ]
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]

steps:
- name: Checkout repo
Expand All @@ -23,7 +23,7 @@ jobs:
python -m pip install -r requirements.txt
python setup.py install
- name: Check source files
if: matrix.python-version == '3.9'
if: matrix.python-version == '3.10'
run: |
python -m pip install pytest-pycodestyle
python -m pip install pytest-flakes
Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Brotli==1.0.7
IPy==0.83
PyYAML==5.4
pytest==4.6
python-dateutil==2.6.0
Brotli==1.0.9
IPy==1.01
PyYAML==6.0
pytest==6.2.5
python-dateutil==2.8.2
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
description-file = README.md
description_file = README.md

[tool:pytest]
addopts = -s -v
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
use_scm_version=True,
setup_requires=['setuptools_scm'],
install_requires=[
'Brotli==1.0.7',
'IPy==0.83',
'PyYAML==5.4',
'pytest==4.6',
'python-dateutil==2.6.0'
'Brotli==1.0.9',
'IPy==1.01',
'PyYAML==6.0',
'pytest==6.2.5',
'python-dateutil==2.8.2'
],
)

0 comments on commit 2ea3270

Please sign in to comment.