cicada 0.8.2__tar.gz → 0.8.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. {cicada-0.8.2 → cicada-0.8.3}/PKG-INFO +2 -2
  2. {cicada-0.8.2 → cicada-0.8.3}/cicada/lib/postgres.py +3 -1
  3. {cicada-0.8.2 → cicada-0.8.3}/cicada.egg-info/PKG-INFO +2 -2
  4. {cicada-0.8.2 → cicada-0.8.3}/cicada.egg-info/requires.txt +1 -1
  5. {cicada-0.8.2 → cicada-0.8.3}/setup.py +2 -2
  6. {cicada-0.8.2 → cicada-0.8.3}/LICENSE +0 -0
  7. {cicada-0.8.2 → cicada-0.8.3}/README.md +0 -0
  8. {cicada-0.8.2 → cicada-0.8.3}/cicada/__init__.py +0 -0
  9. {cicada-0.8.2 → cicada-0.8.3}/cicada/cli.py +0 -0
  10. {cicada-0.8.2 → cicada-0.8.3}/cicada/commands/__init__.py +0 -0
  11. {cicada-0.8.2 → cicada-0.8.3}/cicada/commands/archive_schedule_log.py +0 -0
  12. {cicada-0.8.2 → cicada-0.8.3}/cicada/commands/delete_schedule.py +0 -0
  13. {cicada-0.8.2 → cicada-0.8.3}/cicada/commands/exec_schedule.py +0 -0
  14. {cicada-0.8.2 → cicada-0.8.3}/cicada/commands/exec_server_schedules.py +0 -0
  15. {cicada-0.8.2 → cicada-0.8.3}/cicada/commands/list_schedules.py +0 -0
  16. {cicada-0.8.2 → cicada-0.8.3}/cicada/commands/list_server_schedules.py +0 -0
  17. {cicada-0.8.2 → cicada-0.8.3}/cicada/commands/ping_slack.py +0 -0
  18. {cicada-0.8.2 → cicada-0.8.3}/cicada/commands/register_server.py +0 -0
  19. {cicada-0.8.2 → cicada-0.8.3}/cicada/commands/show_schedule.py +0 -0
  20. {cicada-0.8.2 → cicada-0.8.3}/cicada/commands/spread_schedules.py +0 -0
  21. {cicada-0.8.2 → cicada-0.8.3}/cicada/commands/upsert_schedule.py +0 -0
  22. {cicada-0.8.2 → cicada-0.8.3}/cicada/lib/__init__.py +0 -0
  23. {cicada-0.8.2 → cicada-0.8.3}/cicada/lib/scheduler.py +0 -0
  24. {cicada-0.8.2 → cicada-0.8.3}/cicada/lib/utils.py +0 -0
  25. {cicada-0.8.2 → cicada-0.8.3}/cicada.egg-info/SOURCES.txt +0 -0
  26. {cicada-0.8.2 → cicada-0.8.3}/cicada.egg-info/dependency_links.txt +0 -0
  27. {cicada-0.8.2 → cicada-0.8.3}/cicada.egg-info/entry_points.txt +0 -0
  28. {cicada-0.8.2 → cicada-0.8.3}/cicada.egg-info/top_level.txt +0 -0
  29. {cicada-0.8.2 → cicada-0.8.3}/pyproject.toml +0 -0
  30. {cicada-0.8.2 → cicada-0.8.3}/setup.cfg +0 -0
  31. {cicada-0.8.2 → cicada-0.8.3}/tests/test_functional_archive_logs.py +0 -0
  32. {cicada-0.8.2 → cicada-0.8.3}/tests/test_functional_cli_entrypoint.py +0 -0
  33. {cicada-0.8.2 → cicada-0.8.3}/tests/test_functional_main.py +0 -0
  34. {cicada-0.8.2 → cicada-0.8.3}/tests/test_functional_spread_schedules.py +0 -0
  35. {cicada-0.8.2 → cicada-0.8.3}/tests/test_lib_postgres.py +0 -0
  36. {cicada-0.8.2 → cicada-0.8.3}/tests/test_lib_scheduler.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cicada
3
- Version: 0.8.2
3
+ Version: 0.8.3
4
4
  Summary: Lightweight, agent-based, distributed scheduler
5
5
  Home-page: https://github.com/transferwise/cicada
6
6
  Author: Wise
@@ -12,7 +12,7 @@ Requires-Dist: psycopg2-binary==2.9.*
12
12
  Requires-Dist: pyyaml==6.0.*
13
13
  Requires-Dist: croniter==2.0.*
14
14
  Requires-Dist: tabulate==0.9.*
15
- Requires-Dist: slack-sdk==3.30.*
15
+ Requires-Dist: slack-sdk==3.31.*
16
16
  Requires-Dist: backoff==2.2.*
17
17
  Provides-Extra: dev
18
18
  Requires-Dist: pytest==8.2.*; extra == "dev"
@@ -19,7 +19,9 @@ def db_cicada(dbname=None):
19
19
  user = definitions["db_cicada"]["user"]
20
20
  password = definitions["db_cicada"]["password"]
21
21
 
22
- conn = psycopg2.connect(host=host, port=port, dbname=dbname, user=user, password=password, sslmode="prefer")
22
+ conn = psycopg2.connect(
23
+ host=host, port=port, dbname=dbname, user=user, password=password, sslmode="require", application_name="cicada"
24
+ )
23
25
  conn.autocommit = True
24
26
 
25
27
  return conn
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cicada
3
- Version: 0.8.2
3
+ Version: 0.8.3
4
4
  Summary: Lightweight, agent-based, distributed scheduler
5
5
  Home-page: https://github.com/transferwise/cicada
6
6
  Author: Wise
@@ -12,7 +12,7 @@ Requires-Dist: psycopg2-binary==2.9.*
12
12
  Requires-Dist: pyyaml==6.0.*
13
13
  Requires-Dist: croniter==2.0.*
14
14
  Requires-Dist: tabulate==0.9.*
15
- Requires-Dist: slack-sdk==3.30.*
15
+ Requires-Dist: slack-sdk==3.31.*
16
16
  Requires-Dist: backoff==2.2.*
17
17
  Provides-Extra: dev
18
18
  Requires-Dist: pytest==8.2.*; extra == "dev"
@@ -2,7 +2,7 @@ psycopg2-binary==2.9.*
2
2
  pyyaml==6.0.*
3
3
  croniter==2.0.*
4
4
  tabulate==0.9.*
5
- slack-sdk==3.30.*
5
+ slack-sdk==3.31.*
6
6
  backoff==2.2.*
7
7
 
8
8
  [dev]
@@ -7,7 +7,7 @@ with open("README.md") as f:
7
7
 
8
8
  setup(
9
9
  name="cicada",
10
- version="0.8.2",
10
+ version="0.8.3",
11
11
  description="Lightweight, agent-based, distributed scheduler",
12
12
  long_description=long_description,
13
13
  long_description_content_type="text/markdown",
@@ -22,7 +22,7 @@ setup(
22
22
  "pyyaml==6.0.*",
23
23
  "croniter==2.0.*",
24
24
  "tabulate==0.9.*",
25
- "slack-sdk==3.30.*",
25
+ "slack-sdk==3.31.*",
26
26
  "backoff==2.2.*",
27
27
  ],
28
28
  extras_require={
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes