-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update CI, python version and deps #405
update CI, python version and deps #405
Conversation
canary/requirements.txt
Outdated
pymongo | ||
numpy | ||
slack-sdk | ||
dnspython==2.7.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the better way to do this, rather than explicitly freezing including all transitive deps, is to set just the packages we directly rely on with "compatible" version markers. Given what is in this freeze
result, I think that'd look like:
numpy ~= 2.2
pymongo ~= 4.11
python-dateutil ~= 2.2
slack-sdk ~= 3.34
viam-sdk ~= 0.38
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed
@@ -17,8 +17,8 @@ on: | |||
env: | |||
ESP32_CANARY_ROBOT: ${{ secrets.ESP32_CANARY_ROBOT }} | |||
ESP32_CANARY_ROBOT_PART_ID: ${{ secrets.ESP32_CANARY_ROBOT_PART_ID }} | |||
ESP32_CANARY_API_KEY_2: ${{ secrets.ESP32_CANARY_API_KEY_2 }} | |||
ESP32_CANARY_API_KEY_ID_2: ${{ secrets.ESP32_CANARY_API_KEY_ID_2 }} | |||
ESP32_CANARY_API_KEY: ${{ secrets.ESP32_CANARY_API_KEY }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we no longer need KEY_*_2
, please remember to remove them from the repository settings after this merges.
CI python dependencies weren't frozen, additionally we were using python 3.10.
need to test if this works as expected using manual deploy before merging