Skip to content

Commit 3c2b7b1

Browse files
authored
Merge branch 'main' into fix/python-version
2 parents b903587 + dda4f84 commit 3c2b7b1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
pypi-publish:
1010
name: upload release to PyPI
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212
permissions:
1313
contents: read
1414
id-token: write
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup PDM
2121
uses: pdm-project/setup-pdm@v4
2222
with:
23-
python-version: 3.9.6
23+
python-version: 3.9.22
2424
version: 2.10.0
2525

2626
- name: Publish package distributions to PyPI

src/unstract/llmwhisperer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.3.0"
1+
__version__ = "2.3.1"
22

33
from .client import LLMWhispererClient # noqa: F401
44
from .client_v2 import LLMWhispererClientV2 # noqa: F401

tests/integration/client_v2_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def test_whisper_v2_url_in_post(client_v2, data_dir, output_mode, mode, url, inp
174174
"url,token,webhook_name",
175175
[
176176
(
177-
"https://webhook.site/b76ecc5f-8320-4410-b24f-66525d2c92cb",
177+
"https://webhook.site/62bb38ac-408c-4fcf-b8f1-cb22adbf3f96", # need to find a clean solution
178178
"",
179179
"client_v2_test",
180180
),

0 commit comments

Comments
 (0)