diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bce8f45..42b52eb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -26,7 +26,7 @@ jobs: platforms: all - name: Build wheels - uses: pypa/cibuildwheel@v2.16.5 + uses: pypa/cibuildwheel@v2.17.0 - uses: actions/upload-artifact@v3 with: @@ -46,7 +46,7 @@ jobs: submodules: "recursive" - name: Build wheels - uses: pypa/cibuildwheel@v2.16.5 + uses: pypa/cibuildwheel@v2.17.0 env: CIBW_BUILD: ${{ matrix.cibw_build }} CIBW_SKIP: "cp36-* cp37-*" @@ -104,7 +104,7 @@ jobs: name: artifact path: dist - - uses: pypa/gh-action-pypi-publish@v1.8.11 + - uses: pypa/gh-action-pypi-publish@v1.8.14 with: user: __token__ password: ${{ secrets.pypi_api_token }} diff --git a/src/littlefs/lfs.pyi b/src/littlefs/lfs.pyi index 4ed943b..33efa8a 100644 --- a/src/littlefs/lfs.pyi +++ b/src/littlefs/lfs.pyi @@ -12,8 +12,8 @@ class LFSStat(NamedTuple): name: str # Constants - TYPE_REG: int = LFS_TYPE_REG - TYPE_DIR: int = LFS_TYPE_DIR + TYPE_REG: int = ... + TYPE_DIR: int = ... class LFSFSStat(NamedTuple): """Littlefs filesystem status."""