From 5bc9ce3d448ba30e6a488804047828428c0c8c6f Mon Sep 17 00:00:00 2001 From: Dov Benyomin Sohacheski Date: Wed, 16 Nov 2022 16:00:34 +0200 Subject: [PATCH 1/3] Added python version classifiers --- .travis.yml | 3 +++ setup.py | 15 +++++++++++++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3d7ef4a..a27c35e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,9 @@ python: - "3.4" - "3.5" - "3.6" + - "3.7" + - "3.8" + - "3.9" install: "pip install -r requirements.txt" script: pytest --cov=intuitlib tests/ after_success: diff --git a/setup.py b/setup.py index 6ffc152..cf74ae2 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ from setuptools import find_packages version = {} -with open("./intuitlib/version.py") as fp: +with open('./intuitlib/version.py') as fp: exec(fp.read(), version) setup( @@ -38,5 +38,16 @@ 'enum-compat', ], license='Apache 2.0', - keywords='intuit quickbooks oauth auth openid client' + keywords='intuit quickbooks oauth auth openid client', + classifiers=[ + 'Topic :: Software Development :: Libraries', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9' + ] ) From d7f9e94d3c40e8b41214c34f2bccc8d4d630aeaf Mon Sep 17 00:00:00 2001 From: Dov Benyomin Sohacheski Date: Wed, 31 Jan 2024 08:15:45 +0200 Subject: [PATCH 2/3] Add additional versions --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a27c35e..36e0f4c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,10 @@ python: - "3.7" - "3.8" - "3.9" + - "3.10" + - "3.11" + - "3.12" install: "pip install -r requirements.txt" script: pytest --cov=intuitlib tests/ after_success: - - coveralls \ No newline at end of file + - coveralls From 0196d845450f29946fbe000e2bb89fddcb853005 Mon Sep 17 00:00:00 2001 From: Dov Benyomin Sohacheski Date: Wed, 31 Jan 2024 08:16:12 +0200 Subject: [PATCH 3/3] Update setup.py --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cf74ae2..6493ca8 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,9 @@ 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9' + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ] )