From 0db11b93598b42d8c69403e356ea0388494ea6a4 Mon Sep 17 00:00:00 2001 From: Martin Durant Date: Wed, 25 Oct 2023 09:41:07 -0400 Subject: [PATCH] changelog & unpin build actions (#894) --- .github/workflows/wheel.yml | 74 ++++++++++++++++++------------------ docs/source/releasenotes.rst | 9 +++++ 2 files changed, 46 insertions(+), 37 deletions(-) diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml index df7aec07..2277e6aa 100644 --- a/.github/workflows/wheel.yml +++ b/.github/workflows/wheel.yml @@ -27,34 +27,34 @@ jobs: CIBW_TEST_SKIP: "*" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout with: fetch-depth: 0 - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python with: - python-version: "3.8" + python-version: "3.11" - name: Set up QEMU if: runner.os == 'Linux' - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action with: platforms: all - name: Add msbuild to PATH if: runner.os == 'Windows' - uses: microsoft/setup-msbuild@v1.0.2 + uses: microsoft/setup-msbuild - name: delvewheel install if: runner.os == 'Windows' run: | - python -m pip install delvewheel==0.0.9 cython + python -m pip install delvewheel cython - name: Build wheels - uses: joerick/cibuildwheel@v2.11.2 + uses: joerick/cibuildwheel@v2.16.2 - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact with: path: ./wheelhouse/*.whl name: wheels @@ -82,34 +82,34 @@ jobs: CIBW_TEST_SKIP: "*" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout with: fetch-depth: 0 - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python with: - python-version: "3.8" + python-version: "3.11" - name: Set up QEMU if: runner.os == 'Linux' - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action with: platforms: all - name: Add msbuild to PATH if: runner.os == 'Windows' - uses: microsoft/setup-msbuild@v1.0.2 + uses: microsoft/setup-msbuild - name: delvewheel install if: runner.os == 'Windows' run: | - python -m pip install delvewheel==0.0.9 cython + python -m pip install delvewheel cython - name: Build wheels - uses: joerick/cibuildwheel@v2.11.2 + uses: joerick/cibuildwheel@v2.16.2 - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact with: path: ./wheelhouse/*.whl name: wheels @@ -137,34 +137,34 @@ jobs: CIBW_TEST_SKIP: "*" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout with: fetch-depth: 0 - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python with: - python-version: "3.8" + python-version: "3.11" - name: Set up QEMU if: runner.os == 'Linux' - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action with: platforms: all - name: Add msbuild to PATH if: runner.os == 'Windows' - uses: microsoft/setup-msbuild@v1.0.2 + uses: microsoft/setup-msbuild - name: delvewheel install if: runner.os == 'Windows' run: | - python -m pip install delvewheel==0.0.9 cython + python -m pip install delvewheel cython - name: Build wheels - uses: joerick/cibuildwheel@v2.11.2 + uses: joerick/cibuildwheel@v2.16.2 - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifac with: path: ./wheelhouse/*.whl name: wheels @@ -192,34 +192,34 @@ jobs: CIBW_BEFORE_TEST: "git status" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout with: fetch-depth: 0 - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python with: - python-version: "3.8" + python-version: "3.11" - name: Set up QEMU if: runner.os == 'Linux' - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action with: platforms: all - name: Add msbuild to PATH if: runner.os == 'Windows' - uses: microsoft/setup-msbuild@v1.0.2 + uses: microsoft/setup-msbuild - name: delvewheel install if: runner.os == 'Windows' run: | - python -m pip install delvewheel==0.0.9 cython + python -m pip install delvewheel cython - name: Build wheels - uses: joerick/cibuildwheel@v2.11.2 + uses: joerick/cibuildwheel@v2.16.2 - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact with: path: ./wheelhouse/*.whl name: wheels @@ -241,19 +241,19 @@ jobs: CIBW_TEST_SKIP: "*" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout with: fetch-depth: 0 - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python with: - python-version: "3.8" + python-version: "3.11" - name: Build wheels - uses: joerick/cibuildwheel@v2.11.2 + uses: joerick/cibuildwheel@v2.16.2 - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact with: path: ./wheelhouse/*.whl name: wheels diff --git a/docs/source/releasenotes.rst b/docs/source/releasenotes.rst index 50039d5b..f94a7a74 100644 --- a/docs/source/releasenotes.rst +++ b/docs/source/releasenotes.rst @@ -1,6 +1,15 @@ Release Notes ============= +2023.10.0 +--------- + +#. Datetime units in empty() with tz (#893) +#. Fewer inplace decompressions for V2 pages (#890 +#. Allow writing categorical column with no categories (#888) +#. Fixes for new numpy (#886) +#. RLE bools and DELTA for v1 pages (#885, 883) + 2023.8.0 --------