Skip to content

Commit

Permalink
0.3.4 RC 1
Browse files Browse the repository at this point in the history
  • Loading branch information
flexatone committed May 2, 2023
1 parent 803ff35 commit 1f4d493
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
if: matrix.os == 'macos-11' || matrix.os == 'ubuntu-20.04'
- run: echo '::add-matcher::.github/problem-matchers/msvc.json'
if: matrix.os == 'windows-2022'
- uses: pypa/cibuildwheel@v2.11.2
- uses: pypa/cibuildwheel@v2.12.3
with:
output-dir: dist
env:
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
if: matrix.os == 'macos-11' || matrix.os == 'ubuntu-20.04'
- run: echo '::add-matcher::.github/problem-matchers/msvc.json'
if: matrix.os == 'windows-2022'
- uses: pypa/cibuildwheel@v2.11.2
- uses: pypa/cibuildwheel@v2.12.3
with:
output-dir: dist
env:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import setup
from pathlib import Path

AK_VERSION = '0.3.3'
AK_VERSION = '0.3.4'

def get_long_description() -> str:
return '''The ArrayKit library provides utilities for creating and transforming NumPy arrays, implementing performance-critical StaticFrame operations as Python C extensions.
Expand Down
4 changes: 2 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
def clean(context):
'''Clean doc and build artifacts
'''
cmd = f'{sys.executable} -m pip uninstall --yes arraykit'
cmd = f'{sys.executable} -m pip --disable-pip-version-check uninstall --yes arraykit'
context.run(cmd, echo=True, pty=True)

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


@invoke.task(build)
Expand Down

0 comments on commit 1f4d493

Please sign in to comment.