File tree Expand file tree Collapse file tree 3 files changed +15
-42
lines changed
Expand file tree Collapse file tree 3 files changed +15
-42
lines changed Original file line number Diff line number Diff line change 5353 run : |
5454 conda install -y anaconda-client conda-build conda-verify
5555 - name : Publish distribution to Anaconda
56+ env :
57+ ANACONDA_API_TOKEN : ${{ secrets.ANACONDA_TOKEN }}
5658 run : |
57- export ANACONDA_API_TOKEN = ${{ secrets.ANACONDA_TOKEN }}
58- ./scripts/conda_publish.sh
59+ cd ./conda # go to build dir
60+
61+ # Build for Linux
62+ conda build -c conda-forge -c pytorch --output-folder . .
63+
64+ # Convert to other platforms: OSX, WIN
65+ conda convert -p osx-64 linux-64/*.tar.bz2
66+ conda convert -p win-64 linux-64/*.tar.bz2
67+
68+ anaconda upload --label main osx-64/*.tar.bz2
69+ anaconda upload --label main linux-64/*.tar.bz2
70+ anaconda upload --label main win-64/*.tar.bz2
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 77
88setup (
99 name = "hdc" ,
10- version = "0.5.2 " ,
10+ version = "0.5.3 " ,
1111 description = "Python library for Hyperdimensional Computing" ,
1212 long_description = open ("README.md" ).read (),
1313 long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments