Skip to content

Commit e58ed01

Browse files
committed
1.0.3 RC 1
1 parent 0704243 commit e58ed01

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,15 @@ jobs:
101101
steps:
102102
- uses: actions/download-artifact@v4
103103
with:
104+
# leave out name to get all
104105
path: dist
105106

106-
- uses: pypa/gh-action-pypi-publish@master
107+
- name: Flatten dist directory
108+
run: |
109+
find dist -mindepth 2 -type f \( -name '*.whl' -o -name '*.tar.gz' \) \
110+
-exec mv {} dist/ \;
111+
112+
- uses: pypa/gh-action-pypi-publish@release/v1
107113
with:
108114
password: ${{ secrets.PYPI_TOKEN }}
109115
skip_existing: true

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.3
39+
............
40+
41+
Updated build configuration.
42+
43+
3844
1.0.2
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.2'
7+
AK_VERSION = '1.0.3'
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)