Skip to content

Commit cef5b9d

Browse files
committed
Update tests
1 parent cbe878c commit cef5b9d

File tree

5 files changed

+52
-11
lines changed

5 files changed

+52
-11
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ jobs:
5959
pip install --user --upgrade pip
6060
pip install --user pipx
6161
pipx ensurepath
62-
pipx install poetry
63-
pipx install poethepoet
62+
pipx install poetry==1.4.2
63+
pipx install poethepoet==0.19.0
6464
poetry config virtualenvs.in-project true
6565
poetry install --with dev
6666

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v2.3.0
3+
rev: v4.1.0
44
hooks:
55
- id: check-yaml
66
- id: end-of-file-fixer
@@ -24,12 +24,12 @@ repos:
2424
args: ["--profile", "black"]
2525

2626
- repo: https://github.com/psf/black
27-
rev: 23.7.0
27+
rev: 23.3.0
2828
hooks:
2929
- id: black
3030

3131
- repo: https://github.com/python-poetry/poetry
32-
rev: 1.5.1
32+
rev: 1.4.2
3333
hooks:
3434
- id: poetry-check
3535
- id: poetry-lock

poetry.lock

+42-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ responses = "^0.23.3"
4747
test = "pytest --cov=auth0 --cov-report=term-missing:skip-covered --cov-report=xml"
4848
lint = "pre-commit run --all-files"
4949
"lint:install" = [
50-
{ cmd = "pipx install pre-commit" },
51-
{ cmd = "pipx install black" },
50+
{ cmd = "pipx install pre-commit==2.21.0" },
51+
{ cmd = "pipx install black==23.3.0" },
5252
{ cmd = "pipx install flake8==5.0.4" },
5353
{ cmd = "pipx install isort==5.11.5" },
5454
{ cmd = "pipx install pyupgrade==3.3.2" },
55-
{ cmd = "pipx install mypy" },
55+
{ cmd = "pipx install mypy==1.4.1" },
5656
]
5757
"docs:install" = [
5858
{ cmd = "pipx install sphinx" },

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ certifi==2023.7.22 ; python_version >= "3.7" and python_version < "4.0"
99
cffi==1.15.1 ; python_version >= "3.7" and python_version < "4.0"
1010
charset-normalizer==3.2.0 ; python_version >= "3.7" and python_version < "4.0"
1111
click==8.1.6 ; python_version >= "3.7" and python_version < "4.0"
12-
colorama==0.4.6 ; python_version >= "3.7" and python_version < "4.0" and (sys_platform == "win32" or platform_system == "Windows")
12+
colorama==0.4.6 ; python_version >= "3.7" and python_version < "4.0" and sys_platform == "win32" or python_version >= "3.7" and python_version < "4.0" and platform_system == "Windows"
1313
coverage[toml]==7.2.7 ; python_version >= "3.7" and python_version < "4.0"
1414
cryptography==41.0.3 ; python_version >= "3.7" and python_version < "4.0"
1515
exceptiongroup==1.1.3 ; python_version >= "3.7" and python_version < "3.11"
@@ -32,7 +32,7 @@ pytest==7.4.0 ; python_version >= "3.7" and python_version < "4.0"
3232
pyyaml==6.0.1 ; python_version >= "3.7" and python_version < "4.0"
3333
requests==2.31.0 ; python_version >= "3.7" and python_version < "4.0"
3434
responses==0.23.3 ; python_version >= "3.7" and python_version < "4.0"
35-
tomli==2.0.1 ; python_version >= "3.7" and python_version < "3.11"
35+
tomli==2.0.1 ; python_version >= "3.7" and python_full_version <= "3.11.0a6"
3636
types-pyyaml==6.0.12.11 ; python_version >= "3.7" and python_version < "4.0"
3737
typing-extensions==4.7.1 ; python_version >= "3.7" and python_version < "3.8"
3838
urllib3==2.0.4 ; python_version >= "3.7" and python_version < "4.0"

0 commit comments

Comments
 (0)