Skip to content

Commit ed983f1

Browse files
committed
1.0.4 RC 1
1 parent e58ed01 commit ed983f1

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- run: python setup.py sdist
2323
- uses: actions/upload-artifact@v4
2424
with:
25-
name: dist-sdist
25+
# name: dist-sdist
2626
path: dist
2727

2828
matrix_config:

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.4
39+
............
40+
41+
Updated build configuration.
42+
43+
3844
1.0.3
3945
............
4046

setup.py

Lines changed: 2 additions & 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.3'
7+
AK_VERSION = '1.0.4'
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.
@@ -52,6 +52,7 @@ def get_ext_dir(*components: tp.Iterable[str]) -> tp.Sequence[str]:
5252
version=AK_VERSION,
5353
description='Array utilities for StaticFrame',
5454
long_description=get_long_description(),
55+
long_description_content_type='text/plain', # use text/x-rst
5556
python_requires='>=3.10',
5657
install_requires=['numpy>=1.24.3'],
5758
url='https://github.com/static-frame/arraykit',

0 commit comments

Comments
 (0)