Skip to content

Commit 66a8de6

Browse files
committed
1.0.6 RC 1
1 parent b72d895 commit 66a8de6

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
- run: python setup.py sdist
2323
- uses: actions/upload-artifact@v4
2424
with:
25-
# name: dist-sdist
26-
path: dist
25+
name: dist-sdist
26+
path: dist/*.tar.gz
2727

2828
matrix_config:
2929
name: Matrix Runner Config
@@ -112,4 +112,4 @@ jobs:
112112
- uses: pypa/gh-action-pypi-publish@release/v1
113113
with:
114114
password: ${{ secrets.PYPI_TOKEN }}
115-
skip_existing: true
115+
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.6
39+
............
40+
41+
Updated build configuration.
42+
43+
3844
1.0.5
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.5'
7+
AK_VERSION = '1.0.6'
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)