Skip to content

Commit 18ae521

Browse files
authored
Dependabot and poetry (#891)
* we're not supporting pypi anymore, at least for the time being. Users should install the code from our github repo instead * dependabot updates appear to use poetry version 2.x. The resulting poetry.lock file can cause some workflows to fail because those workflows use poetry 1.8.5. This lockfile was regenerated by 1.8.5 * sort secrets so it's easier to see what may be missing; add fake secrets for new SUTs * add demo key for tests that require it
1 parent 5046c0e commit 18ae521

File tree

5 files changed

+749
-1067
lines changed

5 files changed

+749
-1067
lines changed

.github/workflows/pypi-test.yml

-98
This file was deleted.

.github/workflows/python-app.yml

+20-16
Original file line numberDiff line numberDiff line change
@@ -27,39 +27,43 @@ jobs:
2727
[anthropic]
2828
api_key = "fake"
2929
30-
[together]
30+
[aws]
31+
access_key_id="fake"
32+
secret_access_key="fake"
33+
34+
[azure_phi_3_5_mini_endpoint]
3135
api_key = "fake"
3236
33-
[openai]
37+
[azure_phi_3_5_moe_endpoint]
3438
api_key = "fake"
3539
36-
[hugging_face]
37-
token = "fake"
40+
[demo]
41+
api_key = "12345"
3842
3943
[google_ai]
4044
api_key = "fake"
4145
42-
[mistralai]
43-
api_key = "fake"
46+
[hugging_face]
47+
token = "fake"
4448
45-
[vertexai]
46-
project_id = "fake"
47-
region = "us-central1"
49+
[modellab_files]
50+
token = "fake"
4851
49-
[azure_phi_3_5_mini_endpoint]
52+
[mistralai]
5053
api_key = "fake"
5154
52-
[azure_phi_3_5_moe_endpoint]
55+
[nvidia-nim-api]
5356
api_key = "fake"
5457
55-
[nvidia-nim-api]
58+
[openai]
5659
api_key = "fake"
5760
58-
[demo]
59-
api_key="12345"
61+
[together]
62+
api_key = "fake"
6063
61-
[modellab_files]
62-
token = "fake"
64+
[vertexai]
65+
project_id = "fake"
66+
region = "us-central1"
6367
6468
run: |
6569
mkdir -p config

0 commit comments

Comments
 (0)