diff options
author | Diego Elio Pettenò <flameeyes@flameeyes.com> | 2019-09-02 22:52:01 +0200 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@flameeyes.com> | 2019-09-02 22:52:01 +0200 |
commit | 34723ad4a40fc703dd4e143c41e90d03a496e660 (patch) | |
tree | 5bd08bd5d9a31365c64a06e0b30b32a10181369c | |
parent | Use the new website URL for glucometer-protocols. (diff) | |
download | glucometerutils-34723ad4a40fc703dd4e143c41e90d03a496e660.tar glucometerutils-34723ad4a40fc703dd4e143c41e90d03a496e660.tar.gz glucometerutils-34723ad4a40fc703dd4e143c41e90d03a496e660.tar.bz2 glucometerutils-34723ad4a40fc703dd4e143c41e90d03a496e660.tar.lz glucometerutils-34723ad4a40fc703dd4e143c41e90d03a496e660.tar.xz glucometerutils-34723ad4a40fc703dd4e143c41e90d03a496e660.tar.zst glucometerutils-34723ad4a40fc703dd4e143c41e90d03a496e660.zip |
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | README | 2 | ||||
-rwxr-xr-x | glucometerutils/glucometer.py | 4 | ||||
-rw-r--r-- | setup.py | 2 |
4 files changed, 4 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 051add9..fe3eb6a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ dist: xenial language: python python: - - 3.4 - 3.5 - 3.6 - 3.7 @@ -103,7 +103,7 @@ even if they are all from the same manufacturer, will use different protocols. If you want to contribute code, please note that the target language -is Python 3.4, and that the style to follow is for the most part PEP8 +is Python 3.5, and that the style to follow is for the most part PEP8 compatible. ## License diff --git a/glucometerutils/glucometer.py b/glucometerutils/glucometer.py index 8f222bc..29502fd 100755 --- a/glucometerutils/glucometer.py +++ b/glucometerutils/glucometer.py @@ -14,9 +14,9 @@ from glucometerutils import common from glucometerutils import exceptions def main(): - if sys.version_info < (3, 4): + if sys.version_info < (3, 5): raise Exception( - 'Unsupported Python version, please use at least Python 3.4') + 'Unsupported Python version, please use at least Python 3.5') parser = argparse.ArgumentParser() subparsers = parser.add_subparsers(dest="action") @@ -30,7 +30,7 @@ setup( url = 'https://www.flameeyes.com/p/glucometerutils', download_url = 'https://www.flameeyes.com/files/glucometerutils.tgz', keywords = ['glucometer', 'diabetes'], - python_requires = '~=3.4', + python_requires = '~=3.5', classifiers = [ 'Programming Language :: Python', 'Programming Language :: Python :: 3', |