diff options
author | Tim Dettmers <dettmers@cs.washington.edu> | 2021-10-07 08:39:38 -0700 |
---|---|---|
committer | Tim Dettmers <dettmers@cs.washington.edu> | 2021-10-07 08:39:38 -0700 |
commit | 7923c4a06615456353476a6e07e9296f0c13f776 (patch) | |
tree | fd8b2faabf7c46bdf46aaf7203c29f6fd83fcff6 /deploy_from_slurm.sh | |
parent | 7439924891496025edf60c9da6a782f362a50c70 (diff) |
Changed from testpypi to pypi. Release 0.0.24
Diffstat (limited to 'deploy_from_slurm.sh')
-rw-r--r-- | deploy_from_slurm.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/deploy_from_slurm.sh b/deploy_from_slurm.sh index e21f2e0..6357e1d 100644 --- a/deploy_from_slurm.sh +++ b/deploy_from_slurm.sh @@ -10,7 +10,7 @@ module load gcc/7.3.0 CUDA_HOME=/public/apps/cuda/9.2 make CUDA_VERSION=92 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda @@ -21,7 +21,7 @@ module load cuda/10.0 CUDA_HOME=/public/apps/cuda/10.0 make cuda10x CUDA_VERSION=100 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda module unload gcc module load gcc/8.4 @@ -33,7 +33,7 @@ module load cuda/10.1 CUDA_HOME=/public/apps/cuda/10.1 make cuda10x CUDA_VERSION=101 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda rm -rf dist build @@ -43,7 +43,7 @@ module load cuda/10.2 CUDA_HOME=/public/apps/cuda/10.2/ make cuda10x CUDA_VERSION=102 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda @@ -54,7 +54,7 @@ module load cuda/11.0 CUDA_HOME=/public/apps/cuda/11.0 make cuda110 CUDA_VERSION=110 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda rm -rf dist build @@ -64,7 +64,7 @@ module load cuda/11.1 CUDA_HOME=/public/apps/cuda/11.1 make cuda11x CUDA_VERSION=111 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda rm -rf dist build @@ -74,7 +74,7 @@ module load cuda/11.2 CUDA_HOME=/public/apps/cuda/11.2 make cuda11x CUDA_VERSION=112 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda rm -rf dist build @@ -82,5 +82,5 @@ make clean make cleaneggs CUDA_HOME=/private/home/timdettmers/git/autoswap/local/cuda-11.3 make cuda11x CUDA_VERSION=113 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda |