Skip to content

Commit

Permalink
changelog & unpin build actions (#894)
Browse files Browse the repository at this point in the history
  • Loading branch information
martindurant authored Oct 25, 2023
1 parent 3cf97b7 commit 0db11b9
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 37 deletions.
74 changes: 37 additions & 37 deletions .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
9 changes: 9 additions & 0 deletions docs/source/releasenotes.rst
Original file line number Diff line number Diff line change
@@ -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
--------

Expand Down

0 comments on commit 0db11b9

Please sign in to comment.