feat: fix get crewai versoin

This commit is contained in:
Eduardo Chiarotti
2024-08-23 09:49:59 -03:00
parent 4f266980ef
commit 97b5d6b809

View File

@@ -82,7 +82,7 @@ def get_crewai_version(pyproject_path: str = "pyproject.toml") -> str:
except Exception as e:
print(f"Error reading the pyproject.toml file: {e}")
return None
return "no-version-found"
def fetch_and_json_env_file(env_file_path: str = ".env") -> dict: