diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index b3eaef1..2731e8a 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -22,7 +22,7 @@ jobs: uses: actions/checkout@v4 - name: Detect file changes - id: detect + id: detect-changes run: | # Fetch all changes between commits git fetch --prune --unshallow || true @@ -32,25 +32,17 @@ jobs: # Check if TypeScript or Python files have changed if echo "$CHANGED_FILES" | grep -qE '^test/aidbox_sdk/snapshots/typescript/|^resources/sdk/typescript/'; then echo "typescript-changed=true" >> $GITHUB_OUTPUT - else - echo "typescript-changed=false" >> $GITHUB_OUTPUT fi if echo "$CHANGED_FILES" | grep -qE '^test/aidbox_sdk/snapshots/python/|^resources/sdk/python/'; then echo "python-changed=true" >> $GITHUB_OUTPUT - else - echo "python-changed=false" >> $GITHUB_OUTPUT fi - - name: Set outputs - id: set-outputs - run: | - echo "typescript-changed=${{ env.typescript-changed }}" >> $GITHUB_OUTPUT - echo "python-changed=${{ env.python-changed }}" >> $GITHUB_OUTPUT - lint-typescript: needs: detect-changes - if: ${{ needs.detect-changes.outputs.typescript-changed == 'true' }} + # env: + # CHANGED: ${{ needs.detect-changes.outputs.typescript-changed }} + if: ${{ needs.detect-changes.outputs.typescript-changed }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/resources/sdk/python/setup.py b/resources/sdk/python/setup.py index c6c6a89..1bd068e 100644 --- a/resources/sdk/python/setup.py +++ b/resources/sdk/python/setup.py @@ -7,7 +7,6 @@ setup( name="aidbox", version="0.0.1", - description="", python_requires=">=3.7", package_data={"": ["py.typed"]},