소스 검색

change how version is read

Oz N Tiram 9 년 전
부모
커밋
9017c72414
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      pwman/__init__.py
  2. 1 1
      setup.py

+ 1 - 1
pwman/__init__.py

@@ -32,7 +32,7 @@ appname = "pwman3"
 try:
     version = pkg_resources.get_distribution('pwman3').version
 except pkg_resources.DistributionNotFound:  # pragma: no cover
-    version = "0.7.1"
+    version = "0.7.2"
 
 website = "http://pwman3.github.io/pwman3/"
 author = "Oz Nahum Tiram"

+ 1 - 1
setup.py

@@ -326,7 +326,7 @@ if sys.platform.startswith('win'):
 
 
 setup(name=pwman.appname,
-      version=pwman.version,
+      version='0.7.3.dev',
       description=pwman.description,
       long_description=pwman.long_description,
       author=pwman.author,