Skip to content

Commit

Permalink
Feature/update packages (#13)
Browse files Browse the repository at this point in the history
* Updated dependencies.

* Updated version.

* Formatting
  • Loading branch information
DustinMoriarty authored Oct 5, 2024
1 parent 473d15c commit d526288
Show file tree
Hide file tree
Showing 6 changed files with 111 additions and 104 deletions.
3 changes: 2 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[flake8]
max-line-length = 160
max-line-length = 88
exclude =
.venv
.pytest_cache
dist
disable-noqa = True
per-file-ignores = src/*/__init__.py:F401
extend-ignore = E203,E701
176 changes: 93 additions & 83 deletions poetry.lock

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

12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "asyncio-signal-bus"
version = "1.5.1"
version = "1.5.2"
description = "Internal application publisher/subscriber bus using asyncio queues."
authors = ["DustinMoriarty <[email protected]>"]
readme = "README.md"
Expand All @@ -10,11 +10,11 @@ packages = [{include = "asyncio_signal_bus", from="src"}]
python = "^3.10"

[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
black = "^23.7.0"
flake8 = "^6.1.0"
pytest-asyncio = "^0.21.1"
isort = "^5.12.0"
pytest = "^8.3.3"
black = "^24.8.0"
flake8 = "^7.1.1"
pytest-asyncio = "^0.24.0"
isort = "^5.13.0"

[build-system]
requires = ["poetry-core"]
Expand Down
3 changes: 1 addition & 2 deletions src/asyncio_signal_bus/exception.py
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
class SignalBusShutdownError(Exception):
...
class SignalBusShutdownError(Exception): ...
Loading

0 comments on commit d526288

Please sign in to comment.