Skip to content

Commit 38cf707

Browse files
authored
Merge pull request #36 from nstarman/bump-version
bump version to v0.1.0
2 parents b9ac9af + 56df408 commit 38cf707

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.github/workflows/ci_tests.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,17 @@ jobs:
106106
if: (github.event_name == 'push' || github.event_name == 'pull_request')
107107
needs: initial_checks
108108
with:
109-
upload_to_pypi: false
109+
upload_to_pypi: true
110+
repository_url: https://test.pypi.org/legacy/
110111
upload_to_anaconda: false
111112
test_extras: test
112-
test_command: ls $GITHUB_WORKSPACE; pytest $GITHUB_WORKSPACE/tests $GITHUB_WORKSPACE/docs
113+
test_command: pytest $GITHUB_WORKSPACE/tests $GITHUB_WORKSPACE/docs
114+
secrets:
115+
pypi_token: ${{ secrets.TEST_PYPI_API_TOKEN }}
113116

117+
# FIXME! use OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@v1
114118
test_wheel_building:
115119
# This ensures that a couple of targets work fine in pull requests and pushes
116-
# FIXME! use OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@v1
117120
name: mypyc wheels (${{ matrix.name }})
118121
if: (github.event_name == 'push' || github.event_name == 'pull_request')
119122
needs: initial_checks

.github/workflows/publish.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@ jobs:
1313
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1
1414
with:
1515
upload_to_pypi: true
16-
upload_to_anaconda: false # TODO!
16+
upload_to_anaconda: true
1717
test_extras: test
1818
test_command: ls $GITHUB_WORKSPACE; pytest $GITHUB_WORKSPACE/tests $GITHUB_WORKSPACE/docs
1919
secrets:
2020
pypi_token: ${{ secrets.PYPI_API_TOKEN }}
21+
anaconda_token: ${{ secrets.CONDA_API_TOKEN }}
2122

23+
# FIXME! use OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@v1
2224
mypyc:
2325
name: mypyc wheels (${{ matrix.name }})
2426
runs-on: ${{ matrix.os }}

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "overload_numpy"
3-
version = "0.0.1"
3+
version = "0.1.0"
44
description = "Overload NumPy Functions"
55
readme = "README.rst"
66
requires-python = ">=3.8"

0 commit comments

Comments
 (0)