Skip to content

Commit 373b8da

Browse files
committed
update CI to use ubuntu 22; updated readme
1 parent a25c1bb commit 373b8da

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
tar_gz:
1313
name: Package
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-22.04
1515
steps:
1616
- uses: actions/checkout@master
1717
- uses: actions/setup-python@master
@@ -28,15 +28,15 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
os: [macos-12, ubuntu-20.04, windows-2022]
31+
os: [macos-12, ubuntu-22.04, windows-2022]
3232
major: [3]
3333
minor: [7, 8]
3434
runs-on: ${{ matrix.os }}
3535
steps:
3636
- uses: actions/checkout@master
3737
- uses: actions/setup-python@master
3838
- run: echo '::add-matcher::.github/problem-matchers/gcc.json'
39-
if: matrix.os == 'macos-12' || matrix.os == 'ubuntu-20.04'
39+
if: matrix.os == 'macos-12' || matrix.os == 'ubuntu-22.04'
4040
- run: echo '::add-matcher::.github/problem-matchers/msvc.json'
4141
if: matrix.os == 'windows-2022'
4242

@@ -59,15 +59,15 @@ jobs:
5959
strategy:
6060
fail-fast: false
6161
matrix:
62-
os: [macos-12, ubuntu-20.04, windows-2022]
62+
os: [macos-12, ubuntu-22.04, windows-2022]
6363
major: [3]
6464
minor: [9, 10, 11]
6565
runs-on: ${{ matrix.os }}
6666
steps:
6767
- uses: actions/checkout@master
6868
- uses: actions/setup-python@master
6969
- run: echo '::add-matcher::.github/problem-matchers/gcc.json'
70-
if: matrix.os == 'macos-12' || matrix.os == 'ubuntu-20.04'
70+
if: matrix.os == 'macos-12' || matrix.os == 'ubuntu-22.04'
7171
- run: echo '::add-matcher::.github/problem-matchers/msvc.json'
7272
if: matrix.os == 'windows-2022'
7373

@@ -89,7 +89,7 @@ jobs:
8989
name: Publish
9090
if: github.event_name == 'release'
9191
needs: [tar_gz, whl_lt_3_9, whl_gte_3_9]
92-
runs-on: ubuntu-20.04
92+
runs-on: ubuntu-22.04
9393
steps:
9494
- uses: actions/download-artifact@v3
9595
with:

README.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ ArrayKit requires the following:
3737
What is New in ArrayKit
3838
-------------------------
3939

40+
0.4.2-dev
41+
............
42+
43+
Added ``slice_to_ascending_slice()``.
44+
45+
Updated ``BlockIndex.shape`` to internally cache the shape tuple.
46+
47+
4048
0.4.1
4149
............
4250

0 commit comments

Comments
 (0)