Skip to content

Commit

Permalink
upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tcassou committed Oct 27, 2022
1 parent 52dd506 commit f212d6d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/lint_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3.8.5
uses: actions/setup-python@v2
- uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: 3.8.5
python-version: 3.9.10
- name: Install Python Dependencies
run: |
pip install --upgrade pip setuptools
Expand All @@ -22,11 +22,11 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3.8.5
uses: actions/setup-python@v2
- uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: 3.8.5
python-version: 3.9.10
- name: Install Python Dependencies
run: |
pip install --upgrade pip setuptools
Expand Down
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ default_language_version:
python: python3.8
repos:
- repo: https://github.com/myint/autoflake
rev: v1.4
rev: v1.7.7
hooks:
- id: autoflake
name: Autoflake removes unused imports
Expand All @@ -13,7 +13,7 @@ repos:
'--ignore-init-module-imports',
]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
rev: v4.3.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
Expand All @@ -27,17 +27,17 @@ repos:
- --no-ensure-ascii
- --no-sort-keys
- repo: https://github.com/asottile/reorder_python_imports.git
rev: v2.6.0
rev: v3.9.0
hooks:
- id: reorder-python-imports
- repo: https://github.com/psf/black
rev: 21.9b0
rev: 22.10.0
hooks:
- id: black
name: Black
language_version: python3.8
- repo: https://github.com/pycqa/flake8
rev: 3.9.2
rev: 5.0.4
hooks:
- id: flake8
name: Flake8
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
requests==2.27.1
requests==2.28.1
expectise==1.0.3
4 changes: 2 additions & 2 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-r requirements.txt

pytest==7.0.0
pre-commit==2.17.0
pytest==7.2.0
pre-commit==2.20.0

0 comments on commit f212d6d

Please sign in to comment.