Explorar el Código

Merge branch 'release-0.7.4'

Oz N Tiram hace 9 años
padre
commit
3af57a8a7b
Se han modificado 3 ficheros con 7 adiciones y 2 borrados
  1. 4 0
      ChangeLog
  2. 2 2
      setup.py
  3. 1 0
      test_requirements.txt

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+2016-Jan-15 Oz Nahum Tiram <nahumoz@gmail.com>
+	* Release 0.7.4
+	* Fix typo in setup.py which affects windows installation
+
 2016-Jan-01 Oz Nahum Tiram <nahumoz@gmail.com>
 	* Version 0.7.3
 	* Multiple fixes

+ 2 - 2
setup.py

@@ -322,7 +322,7 @@ install_requires=['pycrypto>=2.6',
                   'colorama>=0.2.4']
 
 if sys.platform.startswith('win'):
-    install_requires.append('pyreadeline')
+    install_requires.append('pyreadline')
 
 
 long_description = u"""\
@@ -334,7 +334,7 @@ Pwman3 supports MySQL, Postgresql and SQLite"""
 
 
 setup(name='pwman3',
-      version='0.7.3',
+      version='0.7.4',
       description = "a command line password manager with support for multiple databases.",
       long_description=long_description,
       author='Oz Nahum Tiram',

+ 1 - 0
test_requirements.txt

@@ -3,3 +3,4 @@ pymysql
 pymongo==2.8
 pexpect
 coverage
+unittest2