File tree 3 files changed +10
-5
lines changed
3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -106,14 +106,17 @@ jobs:
106
106
if : (github.event_name == 'push' || github.event_name == 'pull_request')
107
107
needs : initial_checks
108
108
with :
109
- upload_to_pypi : false
109
+ upload_to_pypi : true
110
+ repository_url : https://test.pypi.org/legacy/
110
111
upload_to_anaconda : false
111
112
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 }}
113
116
117
+ # FIXME! use OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@v1
114
118
test_wheel_building :
115
119
# 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
117
120
name : mypyc wheels (${{ matrix.name }})
118
121
if : (github.event_name == 'push' || github.event_name == 'pull_request')
119
122
needs : initial_checks
Original file line number Diff line number Diff line change @@ -13,12 +13,14 @@ jobs:
13
13
uses : OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1
14
14
with :
15
15
upload_to_pypi : true
16
- upload_to_anaconda : false # TODO!
16
+ upload_to_anaconda : true
17
17
test_extras : test
18
18
test_command : ls $GITHUB_WORKSPACE; pytest $GITHUB_WORKSPACE/tests $GITHUB_WORKSPACE/docs
19
19
secrets :
20
20
pypi_token : ${{ secrets.PYPI_API_TOKEN }}
21
+ anaconda_token : ${{ secrets.CONDA_API_TOKEN }}
21
22
23
+ # FIXME! use OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@v1
22
24
mypyc :
23
25
name : mypyc wheels (${{ matrix.name }})
24
26
runs-on : ${{ matrix.os }}
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " overload_numpy"
3
- version = " 0.0.1 "
3
+ version = " 0.1.0 "
4
4
description = " Overload NumPy Functions"
5
5
readme = " README.rst"
6
6
requires-python = " >=3.8"
You can’t perform that action at this time.
0 commit comments