diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 50cb7d35..8b7db299 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -36,7 +36,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install dependencies - run: pip install pylint + run: pip install . && make install-dev - name: Lint run: make lint diff --git a/.github/workflows/speakeasy_sdk_generation.yml b/.github/workflows/speakeasy_sdk_generation.yml index 0fc3f5ff..40aff40e 100644 --- a/.github/workflows/speakeasy_sdk_generation.yml +++ b/.github/workflows/speakeasy_sdk_generation.yml @@ -24,11 +24,10 @@ jobs: github_access_token: ${{ secrets.GITHUB_TOKEN }} pypi_token: ${{ secrets.PYPI_TOKEN }} speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }} - # We don't need this unless we're modifying the generated code - patch-custom-code: - runs-on: ubuntu-latest - needs: [generate] - steps: - - name: Patch in custom code after regenerating - run: make patch-custom-code + patch-custom-code: + runs-on: ubuntu-latest + needs: [generate] + steps: + - name: Patch in custom code after regenerating + run: make patch-custom-code diff --git a/README.md b/README.md index 21e2a30e..4ce3a008 100755 --- a/README.md +++ b/README.md @@ -23,6 +23,8 @@
Python SDK for the Unstructured API
+NOTE: This README is for the `0.26.0-beta` version. The current published SDK, `0.25.5` can be found [here](https://github.com/Unstructured-IO/unstructured-python-client/blob/v0.25.5/README.md). + This is a Python client for the [Unstructured API](https://docs.unstructured.io/api-reference/api-services/overview). Please refer to the [Unstructured docs](https://docs.unstructured.io/api-reference/api-services/sdk-python) for a full guide to using the client.