Skip to content

Commit 6aaf7b0

Browse files
committed
1.0.7 RC 1
1 parent 66a8de6 commit 6aaf7b0

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/upload-artifact@v4
2424
with:
2525
name: dist-sdist
26-
path: dist/*.tar.gz
26+
path: dist/*
2727

2828
matrix_config:
2929
name: Matrix Runner Config
@@ -103,11 +103,12 @@ jobs:
103103
with:
104104
# leave out name to get all
105105
path: dist
106+
merge-multiple: true
106107

107-
- name: Flatten dist directory
108-
run: |
109-
find dist -mindepth 2 -type f \( -name '*.whl' -o -name '*.tar.gz' \) \
110-
-exec mv {} dist/ \;
108+
# - name: Flatten dist directory
109+
# run: |
110+
# find dist -mindepth 2 -type f \( -name '*.whl' -o -name '*.tar.gz' \) \
111+
# -exec mv {} dist/ \;
111112

112113
- uses: pypa/gh-action-pypi-publish@release/v1
113114
with:

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ ArrayKit requires the following:
3535
What is New in ArrayKit
3636
-------------------------
3737

38+
1.0.7
39+
............
40+
41+
Updated build configuration.
42+
43+
3844
1.0.6
3945
............
4046

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import Extension # type: ignore
55
from setuptools import setup
66

7-
AK_VERSION = '1.0.6'
7+
AK_VERSION = '1.0.7'
88

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

0 commit comments

Comments
 (0)