Browse Source

fix: relax the version constraints

pull/452/head
Richard Nemeth 12 months ago
parent
commit
4803101fb0
  1. 610
      poetry.lock
  2. 38
      pyproject.toml
  3. 6
      tox.ini

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

38
pyproject.toml

@ -29,9 +29,9 @@ Documentation = "https://python-keycloak.readthedocs.io/en/latest/"
"Issue tracker" = "https://github.com/marcospereirampj/python-keycloak/issues"
[tool.poetry.dependencies]
python = "^3.7"
python = ">=3.7,<4.0"
requests = ">=2.20.0"
python-jose = "^3.3.0"
python-jose = ">=3.3.0"
mock = {version = "^4.0.3", optional = true}
alabaster = {version = "^0.7.12", optional = true}
commonmark = {version = "^0.9.1", optional = true}
@ -41,8 +41,8 @@ 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 = "^1.0.0"
deprecation = "^2.1.0"
requests-toolbelt = ">=1.0.0"
deprecation = ">=2.1.0"
[tool.poetry.extras]
docs = [
@ -58,21 +58,21 @@ docs = [
]
[tool.poetry.group.dev.dependencies]
tox = "^3.25.0"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
wheel = "^0.38.4"
pre-commit = "^2.19.0"
isort = "^5.10.1"
black = "^22.3.0"
flake8 = "^3.5.0"
flake8-docstrings = "^1.6.0"
commitizen = "^2.28.0"
cryptography = "^37.0.4"
codespell = "^2.1.0"
darglint = "^1.8.1"
twine = "^4.0.2"
freezegun = "^1.2.2"
tox = ">=4.0.0"
pytest = ">=7.1.2"
pytest-cov = ">=3.0.0"
wheel = ">=0.38.4"
pre-commit = ">=2.19.0"
isort = ">=5.10.1"
black = ">=22.3.0"
flake8 = ">=3.5.0"
flake8-docstrings = ">=1.6.0"
commitizen = ">=2.28.0"
cryptography = ">=37.0.4"
codespell = ">=2.1.0"
darglint = ">=1.8.1"
twine = ">=4.0.2"
freezegun = ">=1.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]

6
tox.ini

@ -1,10 +1,10 @@
[tox]
isolated_build = true
skipsdist = true
envlist = check, apply-check, docs, tests, build, changelog
[testenv]
whitelist_externals =
bash
allowlist_externals = poetry, ./test_keycloak_init.sh
commands_pre =
poetry install --no-root --sync
@ -29,7 +29,7 @@ commands =
[testenv:tests]
setenv = file|tox.env
passenv = CONTAINER_HOST KEYCLOAK_DOCKER_IMAGE_TAG
passenv = CONTAINER_HOST,KEYCLOAK_DOCKER_IMAGE_TAG
commands =
./test_keycloak_init.sh "pytest -vv --cov=keycloak --cov-report term-missing {posargs}"

Loading…
Cancel
Save