File tree Expand file tree Collapse file tree 6 files changed +11
-5
lines changed Expand file tree Collapse file tree 6 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 11# pyautocv's change log
22
3+ ** Release 0.3.0**
34** pyautocv 0.2.2**
45
56- Extended tests and coverage
Original file line number Diff line number Diff line change 22pyautocv's change log
33=====================
44
5+ **Release 0.3.0 **
56**pyautocv 0.2.2 **
67
78
Original file line number Diff line number Diff line change 1010import sys
1111sys .path .append (os .path .dirname (os .path .realpath (__file__ )))
1212__author__ = "Nelson Gonzabato"
13- __version__ = "0.2 .0" .encode ("ascii" ,"ignore" ).decode ('ascii' )
13+ __version__ = "0.3 .0" .encode ("ascii" ,"ignore" ).decode ('ascii' )
1414__all__ = ["segmentation" ]
1515
1616
Original file line number Diff line number Diff line change 1- __version__ = "0.2.1 " .encode ("ascii" ,"ignore" ).decode ('ascii' )
1+ __version__ = "0.3.0 " .encode ("ascii" ,"ignore" ).decode ('ascii' )
Original file line number Diff line number Diff line change @@ -5,8 +5,12 @@ check_status (){
55 case " $docs_answer " in
66 [yY][eE][sS] | [yY] ) read -p " Have you updated the version number in all places?" version_answer
77 case " $version_answer " in
8- [yY][eE][sS] | [yY] ) echo " Perfect. Removing dist and uploading to test.pypi" ;
9- rm -r dist; python setup.py sdist; python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/* ;;
8+ [yY][eE][sS] | [yY] ) echo " Perfect. Cleaning up and uploading to test.pypi"
9+ if [ -d dist ]
10+ then
11+ rm -r dist;
12+ fi ;
13+ python setup.py sdist; python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/* ;;
1014 [nN][oO] ) echo " Please update version number first" ; exit 1;;
1115 esac ;;
1216 [nN][oO] | [nN] ) echo " Please update docs first" ;;
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22
33setup (name = 'pyautocv' ,
4- version = "0.2.2 " .encode ("ascii" , "ignore" ).decode ('ascii' ),
4+ version = "0.3.0 " .encode ("ascii" , "ignore" ).decode ('ascii' ),
55 description = '(Semi) Automated Image Processing' ,
66 url = 'http://www.github.com/Nelson-Gon/pyautocv' ,
77 author = 'Nelson Gonzabato' ,
You can’t perform that action at this time.
0 commit comments