Skip to content

Commit

Permalink
chore(poetry): fix httpx
Browse files Browse the repository at this point in the history
  • Loading branch information
Aliai3aiai committed Sep 22, 2022
1 parent c9f8013 commit ccf313d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python 3.7.12
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ check-code-quality: ## Check the code quality.
@$(POETRY) run failprint -t "Checking code quality" -- flake8 --config config/flake8.ini $(PY_SRC)

check-docs: ## Check if the documentation builds correctly.
@$(POETRY) run failprint -t "Building documentation" -- mkdocs build -s
@$(POETRY) run failprint -t "Building documentation" -- mkdocs build

check-types: ## Check that the code is correctly typed.
@$(POETRY) run failprint -t "Type-checking" -- mypy --config-file config/mypy.ini $(PY_SRC)
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ include = [
python = ">=3.7,<4.0"
Authlib = "<=0.15.3"
python-slugify = "^4.0.1"
httpx = "^0.15.*"
httpx = "^0.15.5"
PyJWT = "^2.1.0"
pre-commit = "^2.13.0"
requests-oauthlib = "^1.3.0"
Expand All @@ -29,7 +29,7 @@ coverage = "^5.1"
pytest = "^6.0.2"
pytest-mock = "^3.3.1"
bandit = "^1.6.2"
mkdocs-material = "^7.1.5"
mkdocs-material = "^8.2.10"
mkdocstrings = "^0.11.4"
pre-commit = "^2.5.0"
pre-commit-hooks = "^3.1.0"
Expand All @@ -38,7 +38,7 @@ mypy = "^0.780"
jinja2 = "^2.11.2"
git-changelog = "^0.4.0"
failprint = "^0.3.0"
black = "^19.10b0"
black = "22.3.0"
isort = { version = "^4.3", extras = ["pyproject"] }
safety = "^1.9.0"
pytest-cov = "^2.9.0"
Expand Down

0 comments on commit ccf313d

Please sign in to comment.