fairo 25.6.2__tar.gz → 25.6.4__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.
Potentially problematic release.
This version of fairo might be problematic. Click here for more details.
- {fairo-25.6.2 → fairo-25.6.4}/PKG-INFO +1 -1
- fairo-25.6.4/fairo/__init__.py +1 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/execution/env_finder.py +0 -1
- {fairo-25.6.2 → fairo-25.6.4}/fairo.egg-info/PKG-INFO +1 -1
- fairo-25.6.2/fairo/__init__.py +0 -17
- {fairo-25.6.2 → fairo-25.6.4}/README.md +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/__init__.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/agent/__init__.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/agent/base_agent.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/agent/code_analysis_agent.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/agent/output/__init__.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/agent/output/base_output.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/agent/output/google_drive.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/agent/tools/__init__.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/agent/tools/base_tools.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/agent/tools/code_analysis.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/agent/tools/utils.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/agent/utils.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/chat/__init__.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/chat/chat.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/client/__init__.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/client/client.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/exceptions.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/execution/__init__.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/execution/executor.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/models/__init__.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/models/custom_field_value.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/models/resources.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/runnable/__init__.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/runnable/runnable.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/workflow/__init__.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/workflow/base_workflow.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/workflow/dependency.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/core/workflow/utils.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/metrics/__init__.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/metrics/fairness_object.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/metrics/metrics.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/settings.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/tests/__init__.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo/tests/test_metrics.py +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo.egg-info/SOURCES.txt +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo.egg-info/dependency_links.txt +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo.egg-info/requires.txt +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/fairo.egg-info/top_level.txt +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/pyproject.toml +0 -0
- {fairo-25.6.2 → fairo-25.6.4}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "25.6.4"
|
|
@@ -33,7 +33,6 @@ def recursively_find_env_vars(start_path, exclude_dirs=None):
|
|
|
33
33
|
full_path = os.path.join(root, file)
|
|
34
34
|
file_vars = find_env_vars_in_file(full_path)
|
|
35
35
|
if file_vars:
|
|
36
|
-
print(f"Found in {full_path}: {file_vars}")
|
|
37
36
|
all_vars.update(file_vars)
|
|
38
37
|
return all_vars
|
|
39
38
|
|
fairo-25.6.2/fairo/__init__.py
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import os
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
def extract_tag_release_id():
|
|
5
|
-
# Get the full reference from the environment variable
|
|
6
|
-
full_ref = os.getenv('GITHUB_REF')
|
|
7
|
-
|
|
8
|
-
# Check if the GITHUB_REF is set and it's a tag
|
|
9
|
-
if full_ref and full_ref.startswith('refs/tags/'):
|
|
10
|
-
# Extract the tag name
|
|
11
|
-
tag_name = full_ref.split('/')[-1]
|
|
12
|
-
return tag_name.replace('release-v', '')
|
|
13
|
-
else:
|
|
14
|
-
return "0.1"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
__version__ = extract_tag_release_id()
|
|
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
|
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|