Browse Source

fixed deployment stuff

Dimitri Korsch 6 năm trước cách đây
mục cha
commit
baf8dc2bf5
2 tập tin đã thay đổi với 2 bổ sung2 xóa
  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
 	REPO=pypitest ./deploy_latest.sh
 
 
 get_version:
 get_version:
-	@python -c "import finetune; print('v{}'.format(finetune.__version__))"
+	@python -c "import cvfinetune; print('v{}'.format(cvfinetune.__version__))"
 
 
 run_tests:
 run_tests:
 	python tests/main.py
 	python tests/main.py

+ 1 - 1
deploy_latest.sh

@@ -1,6 +1,6 @@
 #!/usr/bin/env bash
 #!/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}
 REPO=${REPO:-pypi}