From f365df7dc77aa55beb9d843e631d2c38bc079b17 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Tue, 2 Jan 2024 12:21:21 -0500 Subject: [PATCH] support python 3.8-3.12 --- .travis.yml | 16 ---------------- VERSION | 2 +- setup.py | 7 ++++--- 3 files changed, 5 insertions(+), 20 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 4d39894..0000000 --- a/.travis.yml +++ /dev/null @@ -1,16 +0,0 @@ -language: python -python: -- "3.6" -- "3.7" -- "3.8" -- "3.9" -- "3.10" -- "3.11" -- "3.12" -install: -- pip install -r requirements.txt -- pip install codecov -script: -- coverage run -m unittest discover -s tests/ -after_success: -- codecov \ No newline at end of file diff --git a/VERSION b/VERSION index 03e5161..7b5753f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.4.5 \ No newline at end of file +1.4.6 \ No newline at end of file diff --git a/setup.py b/setup.py index cc43e39..16ac70c 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ author_email=arrapi.__email__, license=arrapi.__license__, packages=find_packages(), - python_requires=">=3.6", + python_requires=">=3.8", keywords=["arrapi", "sonarr", "radarr", "arr", "wrapper", "api"], install_requires=[ "requests" @@ -40,9 +40,10 @@ "Intended Audience :: Developers", "Topic :: Software Development :: Libraries", "Programming Language :: Python", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] )