Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the packages group with 13 updates #230

Merged
merged 2 commits into from
Sep 7, 2024
Merged
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ mypy:
@mypy --strict --ignore-missing-imports aio_background

flake8:
@flake8 --max-line-length 120 --ignore C901,C812,E203 --extend-ignore W503 aio_background tests
@flake8 --max-line-length 120 --ignore C901,C812,E203,E704 --extend-ignore W503 aio_background tests

lint: black isort flake8 mypy

Expand Down
6 changes: 2 additions & 4 deletions aio_background/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,10 @@ class Job(abc.ABC):

@property
@abc.abstractmethod
def is_running(self) -> bool:
...
def is_running(self) -> bool: ...

@abc.abstractmethod
async def close(self, *, timeout: float = 0.5) -> bool:
...
async def close(self, *, timeout: float = 0.5) -> bool: ...


class SingleTaskJob(Job):
Expand Down
26 changes: 13 additions & 13 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
pytest==7.4.0
pytest-runner==6.0.0
isort==5.12.0
flake8==6.1.0
mypy==1.2.0
black==23.7.0
aiohttp==3.8.5
setuptools==68.0.0
wheel==0.41.1
twine==4.0.2
pytest-aiohttp==1.0.4
croniter==1.4.1
types-croniter==1.4.0.1
pytest==8.3.2
pytest-runner==6.0.1
isort==5.13.2
flake8==7.1.1
mypy==1.11.2
black==24.8.0
aiohttp==3.10.5
setuptools==74.1.2
wheel==0.44.0
twine==5.1.1
pytest-aiohttp==1.0.5
croniter==3.0.3
types-croniter==3.0.3.20240731
Loading