Skip to content

Commit 46d7dbc

Browse files
committed
compatibily with python2.6
1 parent ad03399 commit 46d7dbc

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
pyVat is a complete library that validates vat number formats in EU member countries. The algorithms used are described in /doc/VIES-VAT Validation Routines-v15.0.doc
66

77
## Compatibility
8-
Python >= 2.7
8+
Python >= 2.6
99

1010
## Installation
1111
$ pip install vat-format-checker

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setuptools.setup(
88
name="vat-format-checker",
9-
version="0.0.2",
9+
version="0.0.3",
1010
author="Radu Boncea",
1111
author_email="radu.boncea@gmail.com",
1212
description="A library for checking on European VAT formats",
@@ -18,15 +18,16 @@
1818
},
1919
install_requires=[
2020
],
21-
python_requires='>=2.7',
21+
python_requires='>=2.6',
2222
classifiers=[
2323
"License :: OSI Approved :: MIT License",
2424
"Operating System :: OS Independent",
2525
"Development Status :: 4 - Beta",
2626
"Intended Audience :: Developers",
2727
"Intended Audience :: Financial and Insurance Industry",
2828
"License :: OSI Approved :: MIT License",
29-
"Programming Language :: Python :: 2.7",
29+
"Programming Language :: Python :: 2.6",
30+
"Programming Language :: Python :: 2.7",
3031
"Programming Language :: Python :: 3.0",
3132
"Programming Language :: Python :: 3.1",
3233
"Programming Language :: Python :: 3.2",

0 commit comments

Comments
 (0)