From 45633ceacbafb489d0a03fd37d963956afd5edc2 Mon Sep 17 00:00:00 2001 From: Marco Bellaccini Date: Sat, 26 May 2018 12:00:16 +0200 Subject: [PATCH] Fixed compatibility classifier --- HISTORY.rst | 5 +++++ pyAesCrypt/crypto.py | 2 +- setup.py | 3 +-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 4dd8d7b..60686ac 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,11 @@ History =============== +0.3.1 (May 2018) +~~~~~~~~~~~~~~~~~~ +* Fixed Python version compatibility classifier +* Removed useless stat + 0.3 (Aug 2017) ~~~~~~~~~~~~~~~~~~ * Switched from `pycrypto`_ to `PyCA Cryptography`_ for crypto primitives diff --git a/pyAesCrypt/crypto.py b/pyAesCrypt/crypto.py index 754c5cb..c7f877a 100644 --- a/pyAesCrypt/crypto.py +++ b/pyAesCrypt/crypto.py @@ -43,7 +43,7 @@ from os import stat, remove # pyAesCrypt version -version = "0.3" +version = "0.3.1" # encryption/decryption buffer size - 64K bufferSize = 64 * 1024 diff --git a/setup.py b/setup.py index 08e0dcb..6a62de3 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ README = readme.read() setup(name='pyAesCrypt', - version='0.3', + version='0.3.1', packages = find_packages(), include_package_data=True, description='Encrypt and decrypt files in AES Crypt format (version 2)', @@ -19,7 +19,6 @@ classifiers=[ 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', - 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Topic :: Security', 'Topic :: Security :: Cryptography',