climate-ref-celery 0.5.3__tar.gz → 0.5.5__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 (23) hide show
  1. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/PKG-INFO +6 -4
  2. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/pyproject.toml +9 -9
  3. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/.gitignore +0 -0
  4. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/LICENCE +0 -0
  5. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/NOTICE +0 -0
  6. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/README.md +0 -0
  7. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/src/climate_ref_celery/__init__.py +0 -0
  8. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/src/climate_ref_celery/app.py +0 -0
  9. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/src/climate_ref_celery/celeryconf/__init__.py +0 -0
  10. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/src/climate_ref_celery/celeryconf/base.py +0 -0
  11. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/src/climate_ref_celery/celeryconf/dev.py +0 -0
  12. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/src/climate_ref_celery/celeryconf/prod.py +0 -0
  13. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/src/climate_ref_celery/cli.py +0 -0
  14. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/src/climate_ref_celery/executor.py +0 -0
  15. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/src/climate_ref_celery/py.typed +0 -0
  16. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/src/climate_ref_celery/tasks.py +0 -0
  17. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/src/climate_ref_celery/worker_tasks.py +0 -0
  18. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/tests/conftest.py +0 -0
  19. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/tests/unit/test_app.py +0 -0
  20. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/tests/unit/test_cli.py +0 -0
  21. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/tests/unit/test_executor.py +0 -0
  22. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/tests/unit/test_tasks.py +0 -0
  23. {climate_ref_celery-0.5.3 → climate_ref_celery-0.5.5}/tests/unit/test_worker_tasks.py +0 -0
@@ -1,13 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: climate-ref-celery
3
- Version: 0.5.3
3
+ Version: 0.5.5
4
4
  Summary: Celery app for mananging tasks and workers
5
5
  Author-email: Jared Lewis <jared.lewis@climate-resource.com>
6
6
  License-File: LICENCE
7
7
  License-File: NOTICE
8
- Classifier: Development Status :: 4 - Beta
8
+ Classifier: Development Status :: 3 - Alpha
9
9
  Classifier: Intended Audience :: Developers
10
10
  Classifier: Intended Audience :: Science/Research
11
+ Classifier: License :: OSI Approved :: Apache Software License
11
12
  Classifier: Operating System :: OS Independent
12
13
  Classifier: Programming Language :: Python
13
14
  Classifier: Programming Language :: Python :: 3
@@ -17,8 +18,9 @@ Classifier: Programming Language :: Python :: 3.13
17
18
  Classifier: Topic :: Scientific/Engineering
18
19
  Requires-Python: >=3.11
19
20
  Requires-Dist: celery[redis]>=5.4.0
20
- Requires-Dist: cmip-ref-core
21
- Requires-Dist: environs>=9
21
+ Requires-Dist: climate-ref
22
+ Requires-Dist: climate-ref-core
23
+ Requires-Dist: environs>=11
22
24
  Requires-Dist: loguru>=0.7.2
23
25
  Requires-Dist: tqdm>=4.67.1
24
26
  Requires-Dist: typer>=0.12.0
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "climate-ref-celery"
3
- version = "0.5.3"
3
+ version = "0.5.5"
4
4
  description = "Celery app for mananging tasks and workers"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -8,9 +8,9 @@ authors = [
8
8
  ]
9
9
  requires-python = ">=3.11"
10
10
  classifiers = [
11
- "Development Status :: 4 - Beta",
12
- "Intended Audience :: Developers",
11
+ "Development Status :: 3 - Alpha",
13
12
  "Operating System :: OS Independent",
13
+ "Intended Audience :: Developers",
14
14
  "Intended Audience :: Science/Research",
15
15
  "Programming Language :: Python",
16
16
  "Programming Language :: Python :: 3",
@@ -18,12 +18,14 @@ classifiers = [
18
18
  "Programming Language :: Python :: 3.12",
19
19
  "Programming Language :: Python :: 3.13",
20
20
  "Topic :: Scientific/Engineering",
21
+ "License :: OSI Approved :: Apache Software License",
21
22
  ]
22
23
  dependencies = [
23
- "cmip-ref-core",
24
+ "climate-ref",
25
+ "climate-ref-core",
24
26
  "celery[redis]>=5.4.0",
25
27
  "typer>=0.12.0",
26
- "environs>=9",
28
+ "environs>=11",
27
29
  "loguru>=0.7.2",
28
30
  "tqdm>=4.67.1",
29
31
  ]
@@ -32,14 +34,12 @@ dependencies = [
32
34
  ref-celery = "climate_ref_celery.cli:app"
33
35
 
34
36
 
35
- [tool.uv]
36
- dev-dependencies = [
37
+ [dependency-groups]
38
+ dev = [
37
39
  "celery-types>=0.23.0",
38
40
  "types-tqdm>=4.67.0.20250301",
39
41
  ]
40
42
 
41
- [tool.uv.sources]
42
- ref-core = { workspace = true }
43
43
 
44
44
  [build-system]
45
45
  requires = ["hatchling"]