diff --git a/.travis.yml b/.travis.yml
index 71d490e4c00aaa93ba208a23c14777a66ea19d34..52c16c3baecca782bbaf269d2caf41714bcdac48 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -59,7 +59,7 @@ after_success:
   # Label based on the branch and upload to anaconda.org
   - |
     if [ "$TRAVIS_BRANCH" == "master" ]; then
-      anaconda -t="$CONDA_UPLOAD_TOKEN" upload $builddir --label main --force;
+      anaconda -t="$CONDA_UPLOAD_TOKEN" upload $builddir;
     elif [ "$TRAVIS_BRANCH" == "dev" ]; then
-      anaconda -t="$CONDA_UPLOAD_TOKEN" upload $builddir --label dev --force;
+      anaconda -t="$CONDA_UPLOAD_TOKEN" upload $builddir --label dev;
     fi