Skip to content

Commit

Permalink
Bump dependency version (#147)
Browse files Browse the repository at this point in the history
* Minor tweaks to comply with latest black

* Bump to 0.8.1
  • Loading branch information
louis-pie authored Jun 24, 2024
1 parent bfd3bc2 commit 2719a89
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
26 changes: 13 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="cicada",
version="0.8.0",
version="0.8.1",
description="Lightweight, agent-based, distributed scheduler",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -18,21 +18,21 @@
"Programming Language :: Python :: 3 :: Only",
],
install_requires=[
"psycopg2-binary==2.9.7",
"pyyaml==6.0",
"croniter==1.4.1",
"tabulate==0.9",
"slack-sdk==3.22.0",
"backoff==2.2",
"psycopg2-binary==2.9.*",
"pyyaml==6.0.*",
"croniter==2.0.*",
"tabulate==0.9.*",
"slack-sdk==3.30.*",
"backoff==2.2.*",
],
extras_require={
"dev": [
"pytest==7.4.2",
"pytest-cov==4.0",
"pytest-mock==3.10",
"black==23.9.1",
"flake8==6.0",
"freezegun==1.2",
"pytest==8.2.*",
"pytest-cov==5.0.*",
"pytest-mock==3.14.*",
"black==24.4.*",
"flake8==7.1.*",
"freezegun==1.5.*",
]
},
entry_points={"console_scripts": ["cicada=cicada.cli:main"]},
Expand Down
1 change: 0 additions & 1 deletion tests/test_functional_archive_logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
Test archiving schedule_log entries into schedule_log_historical
"""


from unittest import result
import pytest
import os
Expand Down
1 change: 0 additions & 1 deletion tests/test_functional_spread_schedules.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""test_main_functionality.py"""


import pytest
import os
import datetime
Expand Down

0 comments on commit 2719a89

Please sign in to comment.