Skip to content

Commit 1f4d493

Browse files
committed
0.3.4 RC 1
1 parent 803ff35 commit 1f4d493

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
if: matrix.os == 'macos-11' || matrix.os == 'ubuntu-20.04'
4040
- run: echo '::add-matcher::.github/problem-matchers/msvc.json'
4141
if: matrix.os == 'windows-2022'
42-
- uses: pypa/cibuildwheel@v2.11.2
42+
- uses: pypa/cibuildwheel@v2.12.3
4343
with:
4444
output-dir: dist
4545
env:
@@ -69,7 +69,7 @@ jobs:
6969
if: matrix.os == 'macos-11' || matrix.os == 'ubuntu-20.04'
7070
- run: echo '::add-matcher::.github/problem-matchers/msvc.json'
7171
if: matrix.os == 'windows-2022'
72-
- uses: pypa/cibuildwheel@v2.11.2
72+
- uses: pypa/cibuildwheel@v2.12.3
7373
with:
7474
output-dir: dist
7575
env:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup
66
from pathlib import Path
77

8-
AK_VERSION = '0.3.3'
8+
AK_VERSION = '0.3.4'
99

1010
def get_long_description() -> str:
1111
return '''The ArrayKit library provides utilities for creating and transforming NumPy arrays, implementing performance-critical StaticFrame operations as Python C extensions.

tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
def clean(context):
1818
'''Clean doc and build artifacts
1919
'''
20-
cmd = f'{sys.executable} -m pip uninstall --yes arraykit'
20+
cmd = f'{sys.executable} -m pip --disable-pip-version-check uninstall --yes arraykit'
2121
context.run(cmd, echo=True, pty=True)
2222

2323
for artifact in sorted(ARTIFACTS):
@@ -28,7 +28,7 @@ def clean(context):
2828
def build(context):
2929
# context.run('pip install -r requirements-test.txt', echo=True, pty=True)
3030
# keep verbose to see warnings
31-
context.run(f'{sys.executable} -m pip -v install .', echo=True, pty=True)
31+
context.run(f'{sys.executable} -m pip --disable-pip-version-check -v install .', echo=True, pty=True)
3232

3333

3434
@invoke.task(build)

0 commit comments

Comments
 (0)