Skip to content

Commit

Permalink
Merge pull request #36 from nstarman/bump-version
Browse files Browse the repository at this point in the history
bump version to v0.1.0
  • Loading branch information
nstarman authored Oct 16, 2022
2 parents b9ac9af + 56df408 commit 38cf707
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,17 @@ jobs:
if: (github.event_name == 'push' || github.event_name == 'pull_request')
needs: initial_checks
with:
upload_to_pypi: false
upload_to_pypi: true
repository_url: https://test.pypi.org/legacy/
upload_to_anaconda: false
test_extras: test
test_command: ls $GITHUB_WORKSPACE; pytest $GITHUB_WORKSPACE/tests $GITHUB_WORKSPACE/docs
test_command: pytest $GITHUB_WORKSPACE/tests $GITHUB_WORKSPACE/docs
secrets:
pypi_token: ${{ secrets.TEST_PYPI_API_TOKEN }}

# FIXME! use OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@v1
test_wheel_building:
# This ensures that a couple of targets work fine in pull requests and pushes
# FIXME! use OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@v1
name: mypyc wheels (${{ matrix.name }})
if: (github.event_name == 'push' || github.event_name == 'pull_request')
needs: initial_checks
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ jobs:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1
with:
upload_to_pypi: true
upload_to_anaconda: false # TODO!
upload_to_anaconda: true
test_extras: test
test_command: ls $GITHUB_WORKSPACE; pytest $GITHUB_WORKSPACE/tests $GITHUB_WORKSPACE/docs
secrets:
pypi_token: ${{ secrets.PYPI_API_TOKEN }}
anaconda_token: ${{ secrets.CONDA_API_TOKEN }}

# FIXME! use OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@v1
mypyc:
name: mypyc wheels (${{ matrix.name }})
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "overload_numpy"
version = "0.0.1"
version = "0.1.0"
description = "Overload NumPy Functions"
readme = "README.rst"
requires-python = ">=3.8"
Expand Down

0 comments on commit 38cf707

Please sign in to comment.