Skip to content

Commit 02eaab2

Browse files
authored
Merge pull request #42 from IntelPython/fix-build
Fixing publishing issue with missing package description on Anaconda.org
2 parents 512ce2e + ded5184 commit 02eaab2

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.github/workflows/mandelbrot_build_test_deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145
env:
146146
ANACONDA_TOKEN: ${{ secrets.PYCODDIYTOKEN }}
147147
run: |
148-
anaconda --token ${{ env.ANACONDA_TOKEN }} upload --user pycoddiy --label dpep ${PACKAGE_NAME}-*.tar.bz2
148+
anaconda --token ${{ env.ANACONDA_TOKEN }} upload --user pycoddiy --label main ${PACKAGE_NAME}-*.tar.bz2
149149
150150
build_windows:
151151
runs-on: windows-latest
@@ -303,4 +303,4 @@ jobs:
303303
env:
304304
ANACONDA_TOKEN: ${{ secrets.PYCODDIYTOKEN }}
305305
run: |
306-
anaconda --token ${{ env.ANACONDA_TOKEN }} upload --user pycoddiy --label dpep ${{ env.PACKAGE_NAME }}-*.tar.bz2
306+
anaconda --token ${{ env.ANACONDA_TOKEN }} upload --user pycoddiy --label main ${{ env.PACKAGE_NAME }}-*.tar.bz2

.github/workflows/mcpi_build_test_upload.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146
env:
147147
ANACONDA_TOKEN: ${{ secrets.PYCODDIYTOKEN }}
148148
run: |
149-
anaconda --token ${{ env.ANACONDA_TOKEN }} upload --user pycoddiy --label dpep ${PACKAGE_NAME}-*.tar.bz2
149+
anaconda --token ${{ env.ANACONDA_TOKEN }} upload --user pycoddiy --label main ${PACKAGE_NAME}-*.tar.bz2
150150
151151
build_windows:
152152
runs-on: windows-latest
@@ -307,4 +307,4 @@ jobs:
307307
env:
308308
ANACONDA_TOKEN: ${{ secrets.PYCODDIYTOKEN }}
309309
run: |
310-
anaconda --token ${{ env.ANACONDA_TOKEN }} upload --user pycoddiy --label dpep ${{ env.PACKAGE_NAME }}-*.tar.bz2
310+
anaconda --token ${{ env.ANACONDA_TOKEN }} upload --user pycoddiy --label main ${{ env.PACKAGE_NAME }}-*.tar.bz2

demos/mandelbrot/conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ about:
4343
license_family: BSD
4444
license_file:
4545
- LICENSE
46-
summary: "Mandelbort Set demo using numpy, numba, dpnp, numba-dpex"
46+
summary: Mandelbort Set demo using numpy, numba, dpnp, numba-dpex
4747
description: |
4848
The Mandelbrot set is the set of complex numbers c for which the function f(z)=z*z + c
4949
does not diverge to infinity when iterated from z=0, i.e., for which the sequence

demos/mcpi/conda-recipe/meta.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,10 @@ about:
4040
license_family: BSD
4141
license_file:
4242
- LICENSE
43-
summary: "Monte Carlo demo to compute Pi using numpy, numba, dpnp, numba-dpex"
43+
summary: Monte Carlo demo to compute Pi using numpy, numba, dpnp, and numba-dpex
4444
description: |
45-
This is a "Hello, World" application in Monte Carlo methods.
46-
It stresses random number generation along with some other math
47-
required for implementation of the Acceptance-Rejection technique.
45+
This is a Hello, World application in Monte Carlo methods. It stresses random number generation along
46+
with some other math required for implementation of the Acceptance-Rejection technique.
4847
4948
extra:
5049
recipe-maintainers:

0 commit comments

Comments
 (0)