Skip to content

Commit

Permalink
Update package versions in pyproject.toml
Browse files Browse the repository at this point in the history
The project dependencies have been updated to newer versions in the pyproject.toml file. This includes packages such as mypy, pytest, ruff, types-python-dateutil, and types-requests. This ensures the project stays up-to-date with recent package releases and improvements.
  • Loading branch information
meanmail committed Jul 10, 2024
1 parent 29dadb2 commit c53d164
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 42 deletions.
73 changes: 37 additions & 36 deletions poetry.lock

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

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ requests = "^2.31.0"
structlog = ">=23.1.0"

[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
pytest = ">=7.4.2,<9.0.0"
ruff = ">=0.1.13,<0.5.0"
types-python-dateutil = "^2.8.19.14"
types-requests = "^2.31.0.4"
mypy = "^1.10.1"
pytest = ">=8.2.2"
ruff = ">=0.5.1"
types-python-dateutil = "^2.9.0.20240316"
types-requests = "^2.32.0.20240622"

[build-system]
requires = ["poetry-core"]
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def restore(self) -> None:
setattr(epicbox_config, attr, value)


@pytest.fixture()
@pytest.fixture
def config() -> Iterator[ConfigWrapper]:
"""Return wrapped config.
Expand Down

0 comments on commit c53d164

Please sign in to comment.