File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 }}
Original file line number Diff line number Diff line change 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"
You can’t perform that action at this time.
0 commit comments