-
Hello, I'm getting this error when executing a git deploy via a Github action. The installed version is 1.5.10. This was running well as of Oct 1st without any changes to the pipeline code. The error seems to point to an issue with the env vars but no changes have been made there. I copy/pasted the secret key just in case. Any leads on what could be tripping this up? Thanks Error
Full github actions yaml in case it's useful ` on: jobs:
` |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@kaypro4 This is due to I haven't had time to debug it fully yet and switch to their recommended approaches, but you can swap your install lines in your workflow file for these... # Restrict pydantic-settings
- name: Install Pydantic-Setting requirements
run: python -m pip install pydantic-settings==2.5.2
# Install a specific version of CS Tools
- name: Install CS Tools
run: python -m pip install "cs_tools[cli] @ https://github.com/thoughtspot/cs_tools/archive/v1.5.10.zip" and unblock the issue I believe. |
Beta Was this translation helpful? Give feedback.
@kaypro4 This is due to
pydantic_settings == 2.6.0
changing their API and leading to quite a few issues.I haven't had time to debug it fully yet and switch to their recommended approaches, but you can swap your install lines in your workflow file for these...
and unblock the issue I believe.