Skip to content

Commit

Permalink
Remove aiohttp-poe
Browse files Browse the repository at this point in the history
This client library doesn't add much over the fastapi one, so it's
better to consolidate to only one async Python client.

We may still add other client libraries in the future if there is demand.
  • Loading branch information
JelleZijlstra committed Jun 1, 2023
1 parent a98b8ec commit 2cbe775
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install aiohttp_poe/ fastapi_poe/
python -m pip install fastapi_poe/
- uses: jakebailey/pyright-action@v1
with:
working-directory: aiohttp_poe
- uses: jakebailey/pyright-action@v1
with:
working-directory: fastapi_poe
10 changes: 0 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,3 @@ jobs:
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN_FASTAPI }}
- name: Clean up
run: rm -rf dist/
- name: Build a binary wheel and a source tarball (aiohttp-poe)
run: >-
python -m build --sdist --wheel --outdir dist/ aiohttp_poe/
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN_AIOHTTP }}

0 comments on commit 2cbe775

Please sign in to comment.