Browse Source

chore: upgrade dependencies

pull/409/head
Richard Nemeth 1 year ago
parent
commit
33f768fd74
  1. 1644
      poetry.lock
  2. 6
      pyproject.toml
  3. 15
      tox.ini

1644
poetry.lock
File diff suppressed because it is too large
View File

6
pyproject.toml

@ -30,9 +30,9 @@ Documentation = "https://python-keycloak.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.20.0"
requests = "^2.28.2"
python-jose = "^3.3.0"
urllib3 = "^1.26.0"
urllib3 = "^1.26.14"
mock = {version = "^4.0.3", optional = true}
alabaster = {version = "^0.7.12", optional = true}
commonmark = {version = "^0.9.1", optional = true}
@ -42,7 +42,7 @@ sphinx-rtd-theme = {version = "^1.0.0", optional = true}
readthedocs-sphinx-ext = {version = "^2.1.9", optional = true}
m2r2 = {version = "^0.3.2", optional = true}
sphinx-autoapi = {version = "^2.0.0", optional = true}
requests-toolbelt = "^0.9.1"
requests-toolbelt = "^0.10.1"
[tool.poetry.extras]
docs = [

15
tox.ini

@ -1,13 +1,13 @@
[tox]
requires =
tox-poetry
poetry
tox<4.0.0
isolated_build = true
skipsdist = true
envlist = check, apply-check, docs, tests, build, changelog
[testenv]
whitelist_externals =
bash
commands_pre =
poetry install --no-root --sync
[testenv:check]
commands =
@ -23,7 +23,8 @@ commands =
isort src/keycloak tests docs
[testenv:docs]
extras = docs
commands_pre =
poetry install --no-root --sync -E docs
commands =
sphinx-build -T -E -W -b html -d _build/doctrees -D language=en ./docs/source _build/html
@ -34,10 +35,6 @@ commands =
./test_keycloak_init.sh "pytest -vv --cov=keycloak --cov-report term-missing {posargs}"
[testenv:build]
deps =
poetry
setenv =
POETRY_VIRTUALENVS_CREATE = false
commands =
poetry build --format sdist
poetry build --format wheel

Loading…
Cancel
Save