Skip to content

Commit 487b916

Browse files
authored
Merge branch 'main' into fix/assign-api-key-in-init
Signed-off-by: Jaseem Jas <89440144+jaseemjaskp@users.noreply.github.com>
2 parents 65922a9 + f70bdb6 commit 487b916

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

.github/workflows/main.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Publish Python Package
2+
3+
on:
4+
release:
5+
types:
6+
- published
7+
8+
jobs:
9+
pypi-publish:
10+
name: upload release to PyPI
11+
runs-on: ubuntu-20.04
12+
permissions:
13+
contents: read
14+
id-token: write
15+
steps:
16+
- uses: actions/checkout@v4
17+
with:
18+
ref: ${{ github.event.release.tag_name }}
19+
20+
- name: Setup PDM
21+
uses: pdm-project/setup-pdm@v4
22+
with:
23+
python-version: 3.9.6
24+
version: 2.10.0
25+
26+
- name: Publish package distributions to PyPI
27+
run: pdm publish

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["pdm-backend"]
33
build-backend = "pdm.backend"
44

55
[project]
6-
name = "llmwhisperer"
6+
name = "llmwhisperer-client"
77
dynamic = ["version"]
88
description = "Client library for LLM Whisperer"
99
dependencies = [

src/llmwhisperer/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
__version__ = "0.1.1"
22

3-
43
def get_sdk_version():
54
"""Returns the SDK version."""
65
return __version__

0 commit comments

Comments
 (0)