Skip to content

Commit

Permalink
Minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DhruvSrikanth committed Aug 23, 2024
1 parent 041fe75 commit a0b4e23
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
run: >-
gh release create
'v0.1.8'
'v0.1.9'
--repo '${{ github.repository }}'
--notes ""
- name: Upload artifact signatures to GitHub Release
Expand All @@ -90,5 +90,5 @@ jobs:
# sigstore-produced signatures and certificates.
run: >-
gh release upload
'v0.1.8' dist/**
'v0.1.9' dist/**
--repo '${{ github.repository }}'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [
]
description = "A client facing API for interacting with the WeCo AI function builder service."
readme = "README.md"
version = "0.1.8"
version = "0.1.9"
license = {text = "MIT"}
requires-python = ">=3.8"
dependencies = ["asyncio", "httpx[http2]", "pillow"]
Expand Down
1 change: 1 addition & 0 deletions weco/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def __init__(self, api_key: Union[str, None] = None, timeout: float = 120.0, htt
self.http2 = http2
self.timeout = timeout
self.base_url = "https://function.api.weco.ai"

# Setup clients
self.client = httpx.Client(http2=http2, timeout=timeout)
self.async_client = httpx.AsyncClient(http2=http2, timeout=timeout)
Expand Down

0 comments on commit a0b4e23

Please sign in to comment.