Browse Source

fixed deployment stuff

Dimitri Korsch 6 years ago
parent
commit
baf8dc2bf5
2 changed files with 2 additions and 2 deletions
  1. 1 1
      Makefile
  2. 1 1
      deploy_latest.sh

+ 1 - 1
Makefile

@@ -11,7 +11,7 @@ test_deploy: build_sdist
 	REPO=pypitest ./deploy_latest.sh
 
 get_version:
-	@python -c "import finetune; print('v{}'.format(finetune.__version__))"
+	@python -c "import cvfinetune; print('v{}'.format(cvfinetune.__version__))"
 
 run_tests:
 	python tests/main.py

+ 1 - 1
deploy_latest.sh

@@ -1,6 +1,6 @@
 #!/usr/bin/env bash
 
-current_version=$(python -c "import finetune; print(finetune.__version__)")
+current_version=$(python -c "import cvfinetune; print(cvfinetune.__version__)")
 
 REPO=${REPO:-pypi}