From 9048f713999cb34ef2bb95074b5793709f1dd3cf Mon Sep 17 00:00:00 2001 From: Dusan Baran Date: Fri, 22 Nov 2024 15:54:35 +0100 Subject: [PATCH] Build and test against 2.27.0-rc3 --- .github/workflows/build-wheels.yml | 58 +++++++++++++++--------------- CMakeLists.txt | 4 +-- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index 741939661b..1998567119 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -13,8 +13,8 @@ on: type: boolean default: false push: - tags: - - "*" + # tags: + # - "*" env: SETUPTOOLS_SCM_PRETEND_VERSION_FOR_TILEDB: ${{ inputs.version }} @@ -136,30 +136,30 @@ jobs: pip uninstall -y pandas pytest -vv --showlocals $PROJECT_CWD - upload_pypi: - needs: [build_wheels, test_sdist] - runs-on: ubuntu-latest - environment: pypi - permissions: - id-token: write - outputs: - package_version: ${{ steps.get_package_version.outputs.package_version }} - steps: - - uses: actions/download-artifact@v4 - with: - path: dist - merge-multiple: true - - - id: get_package_version - run: | - echo "package_version=$(ls dist/ | head -n 1 | cut -d - -f 2)" >> "$GITHUB_OUTPUT" - - - name: Upload to test-pypi - if: inputs.test_pypi - uses: pypa/gh-action-pypi-publish@release/v1 - with: - repository-url: https://test.pypi.org/legacy/ - - - name: Upload to pypi - if: startsWith(github.ref, 'refs/tags/') - uses: pypa/gh-action-pypi-publish@release/v1 + # upload_pypi: + # needs: [build_wheels, test_sdist] + # runs-on: ubuntu-latest + # environment: pypi + # permissions: + # id-token: write + # outputs: + # package_version: ${{ steps.get_package_version.outputs.package_version }} + # steps: + # - uses: actions/download-artifact@v4 + # with: + # path: dist + # merge-multiple: true + # + # - id: get_package_version + # run: | + # echo "package_version=$(ls dist/ | head -n 1 | cut -d - -f 2)" >> "$GITHUB_OUTPUT" + # + # - name: Upload to test-pypi + # if: inputs.test_pypi + # uses: pypa/gh-action-pypi-publish@release/v1 + # with: + # repository-url: https://test.pypi.org/legacy/ + # + # - name: Upload to pypi + # if: startsWith(github.ref, 'refs/tags/') + # uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/CMakeLists.txt b/CMakeLists.txt index dfd75c62dc..7cea84309c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,8 +46,8 @@ if (NOT TileDB_FOUND) message(STATUS "Downloading TileDB default version ...") # Download latest release fetch_prebuilt_tiledb( - VERSION 2.26.2 - RELLIST_HASH SHA256=86c19d7c5246cb18e370a4272cead63ea84bd651789842e618de4d57d4510522 + VERSION 2.27.0-rc3 + RELLIST_HASH SHA256=cfe40c6ec0fd60c3df18833019a1239543b630553bf01a3016997176f86bd9a5 ) endif() find_package(TileDB REQUIRED)