garf-executors 0.0.12__tar.gz → 0.0.13__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. {garf_executors-0.0.12 → garf_executors-0.0.13}/PKG-INFO +3 -3
  2. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors/__init__.py +1 -1
  3. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors.egg-info/PKG-INFO +3 -3
  4. {garf_executors-0.0.12 → garf_executors-0.0.13}/pyproject.toml +2 -2
  5. {garf_executors-0.0.12 → garf_executors-0.0.13}/README.md +0 -0
  6. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors/api_executor.py +0 -0
  7. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors/bq_executor.py +0 -0
  8. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors/config.py +0 -0
  9. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors/entrypoints/__init__.py +0 -0
  10. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors/entrypoints/cli.py +0 -0
  11. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors/entrypoints/server.py +0 -0
  12. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors/entrypoints/utils.py +0 -0
  13. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors/exceptions.py +0 -0
  14. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors/execution_context.py +0 -0
  15. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors/executor.py +0 -0
  16. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors/fetchers.py +0 -0
  17. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors/sql_executor.py +0 -0
  18. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors.egg-info/SOURCES.txt +0 -0
  19. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors.egg-info/dependency_links.txt +0 -0
  20. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors.egg-info/entry_points.txt +0 -0
  21. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors.egg-info/requires.txt +0 -0
  22. {garf_executors-0.0.12 → garf_executors-0.0.13}/garf_executors.egg-info/top_level.txt +0 -0
  23. {garf_executors-0.0.12 → garf_executors-0.0.13}/setup.cfg +0 -0
@@ -1,21 +1,21 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: garf-executors
3
- Version: 0.0.12
3
+ Version: 0.0.13
4
4
  Summary: Executes queries against API and writes data to local/remote storage.
5
5
  Author-email: "Google Inc. (gTech gPS CSE team)" <no-reply@google.com>, Andrei Markin <andrey.markin.ppc@gmail.com>
6
6
  License: Apache 2.0
7
7
  Classifier: Programming Language :: Python :: 3 :: Only
8
- Classifier: Programming Language :: Python :: 3.8
9
8
  Classifier: Programming Language :: Python :: 3.9
10
9
  Classifier: Programming Language :: Python :: 3.10
11
10
  Classifier: Programming Language :: Python :: 3.11
12
11
  Classifier: Programming Language :: Python :: 3.12
13
12
  Classifier: Programming Language :: Python :: 3.13
13
+ Classifier: Programming Language :: Python :: 3.14
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
16
  Classifier: Operating System :: OS Independent
17
17
  Classifier: License :: OSI Approved :: Apache Software License
18
- Requires-Python: >=3.8
18
+ Requires-Python: >=3.9
19
19
  Description-Content-Type: text/markdown
20
20
  Requires-Dist: garf-core
21
21
  Requires-Dist: garf-io
@@ -48,4 +48,4 @@ __all__ = [
48
48
  'ApiExecutionContext',
49
49
  ]
50
50
 
51
- __version__ = '0.0.12'
51
+ __version__ = '0.0.13'
@@ -1,21 +1,21 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: garf-executors
3
- Version: 0.0.12
3
+ Version: 0.0.13
4
4
  Summary: Executes queries against API and writes data to local/remote storage.
5
5
  Author-email: "Google Inc. (gTech gPS CSE team)" <no-reply@google.com>, Andrei Markin <andrey.markin.ppc@gmail.com>
6
6
  License: Apache 2.0
7
7
  Classifier: Programming Language :: Python :: 3 :: Only
8
- Classifier: Programming Language :: Python :: 3.8
9
8
  Classifier: Programming Language :: Python :: 3.9
10
9
  Classifier: Programming Language :: Python :: 3.10
11
10
  Classifier: Programming Language :: Python :: 3.11
12
11
  Classifier: Programming Language :: Python :: 3.12
13
12
  Classifier: Programming Language :: Python :: 3.13
13
+ Classifier: Programming Language :: Python :: 3.14
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
16
  Classifier: Operating System :: OS Independent
17
17
  Classifier: License :: OSI Approved :: Apache Software License
18
- Requires-Python: >=3.8
18
+ Requires-Python: >=3.9
19
19
  Description-Content-Type: text/markdown
20
20
  Requires-Dist: garf-core
21
21
  Requires-Dist: garf-io
@@ -14,18 +14,18 @@ authors = [
14
14
  {name = "Google Inc. (gTech gPS CSE team)", email = "no-reply@google.com"},
15
15
  {name = "Andrei Markin", email = "andrey.markin.ppc@gmail.com"},
16
16
  ]
17
- requires-python = ">=3.8"
17
+ requires-python = ">=3.9"
18
18
  description = "Executes queries against API and writes data to local/remote storage."
19
19
  readme = "README.md"
20
20
  license = {text = "Apache 2.0"}
21
21
  classifiers = [
22
22
  "Programming Language :: Python :: 3 :: Only",
23
- "Programming Language :: Python :: 3.8",
24
23
  "Programming Language :: Python :: 3.9",
25
24
  "Programming Language :: Python :: 3.10",
26
25
  "Programming Language :: Python :: 3.11",
27
26
  "Programming Language :: Python :: 3.12",
28
27
  "Programming Language :: Python :: 3.13",
28
+ "Programming Language :: Python :: 3.14",
29
29
  "Intended Audience :: Developers",
30
30
  "Topic :: Software Development :: Libraries :: Python Modules",
31
31
  "Operating System :: OS Independent",