Skip to content

Commit 0c7c54c

Browse files
committed
Fix deploys and s3 upload
1 parent 1b23ecc commit 0c7c54c

File tree

3 files changed

+120
-88
lines changed

3 files changed

+120
-88
lines changed

devops/playbook.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,15 @@
4646
name: python3.13
4747
state: latest
4848

49+
- name: install rust toolchain
50+
become: yes
51+
become_user: root
52+
apt:
53+
name:
54+
- rustc
55+
- cargo
56+
state: latest
57+
4958
- name: install app dependencies
5059
shell: /home/ubuntu/.local/bin/uv venv --python 3.13 && /home/ubuntu/.local/bin/uv sync
5160
args:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies = [
1212
"sseclient-py==1.9.0",
1313
"requests==2.32.5",
1414
"boto3~=1.42.24",
15-
"ddtrace~=4.1.3",
15+
"ddtrace~=4.0.0",
1616
"python-json-logger~=2.0.7",
1717
"wheel>=0.46.2",
1818
"urllib3>=2.6.3",

0 commit comments

Comments
 (0)