Skip to content

Commit 0704243

Browse files
committed
1.0.2 RC 1
1 parent d176d5b commit 0704243

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,6 @@ jobs:
9393
name: dist-wheels-${{ matrix.os }}-py3${{ matrix.python.minor }} # Unique artifact name
9494
path: dist/*
9595

96-
- name: Collect artifact name
97-
run: |
98-
echo "ARTIFACT_NAMES=${ARTIFACT_NAMES} dist-wheels-${{ matrix.os }}-py3${{ matrix.python.minor }} " >> $GITHUB_ENV
99-
100-
- id: collect_artifacts
101-
run: echo "::set-output name=artifact_names::${{ env.ARTIFACT_NAMES }}"
102-
10396
upload:
10497
name: Publish
10598
if: github.event_name == 'release'
@@ -108,16 +101,8 @@ jobs:
108101
steps:
109102
- uses: actions/download-artifact@v4
110103
with:
111-
name: dist-sdist
112104
path: dist
113105

114-
- name: Download wheel artifacts using recorded names
115-
run: |
116-
for artifact in ${{ needs.wheels.outputs.artifact_names }}; do
117-
echo "Downloading artifact: $artifact"
118-
gh run download -n "$artifact" -D dist || echo "Artifact $artifact not found."
119-
done
120-
121106
- uses: pypa/gh-action-pypi-publish@master
122107
with:
123108
password: ${{ secrets.PYPI_TOKEN }}

README.rst

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

38+
1.0.2
39+
............
40+
41+
Updated build configuration.
42+
43+
44+
1.0.1
45+
............
46+
47+
Updated build configuration.
48+
49+
3850
1.0.0
3951
............
4052

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.0'
7+
AK_VERSION = '1.0.2'
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)