Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 22 additions & 22 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ classifiers = [
]

[tool.poetry.dependencies]
python = ">=3.12, <=3.13"
python = ">=3.12,<3.14"
requests = "^2.31.0"
mkdocstrings = {extras = ["python"], version = ">=0.26.2,<0.28.0"}
mkdocstrings = { extras = ["python"], version = ">=0.26.2,<0.28.0" }

[tool.poetry.group.dev.dependencies]
mypy = "^1.12.0"
pytest = ">=7.4.1,<9.0.0"
python-dotenv = "^1.0.0"
pytest-asyncio = ">=0.21.1,<0.25.0"
pytest-codecov = ">=0.5.1,<0.7.0"
ruff = "^0.7.0"
ruff = ">=0.7,<0.9"
mkdocs-material = "^9.5.41"
mkdocstrings-python = "^1.12.1"
types-pygments = "^2.18.0.20240506"
Expand Down
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import subprocess
from collections.abc import Generator
from json import loads
from pathlib import Path
from time import sleep
from typing import Generator

from pytest import fixture, mark
from requests import ConnectionError, get
from requests import get


@fixture
Expand Down
Loading