Skip to content

Commit 793145e

Browse files
authored
fix: Fix CI failures after new 0.26.0 (beta) merge (#156)
* Run the right install command before running `make lint` * Fix indentation error with the new `patch-custom-code` step
1 parent 919b6ca commit 793145e

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v4
3838
- name: Install dependencies
39-
run: pip install pylint
39+
run: pip install . && make install-dev
4040
- name: Lint
4141
run: make lint
4242

.github/workflows/speakeasy_sdk_generation.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,10 @@ jobs:
2424
github_access_token: ${{ secrets.GITHUB_TOKEN }}
2525
pypi_token: ${{ secrets.PYPI_TOKEN }}
2626
speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }}
27-
# We don't need this unless we're modifying the generated code
28-
patch-custom-code:
29-
runs-on: ubuntu-latest
30-
needs: [generate]
31-
steps:
32-
- name: Patch in custom code after regenerating
33-
run: make patch-custom-code
27+
patch-custom-code:
28+
runs-on: ubuntu-latest
29+
needs: [generate]
30+
steps:
31+
- name: Patch in custom code after regenerating
32+
run: make patch-custom-code
3433

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
<p>Python SDK for the Unstructured API</p>
2424
</h2>
2525

26+
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).
27+
2628
This is a Python client for the [Unstructured API](https://docs.unstructured.io/api-reference/api-services/overview).
2729

2830
Please refer to the [Unstructured docs](https://docs.unstructured.io/api-reference/api-services/sdk-python) for a full guide to using the client.

0 commit comments

Comments
 (0)