From 1656e01fc44287951841173530e1c67a88388da2 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn Date: Wed, 25 Jan 2023 11:35:25 -0600 Subject: [PATCH] fix: updated version number and minimum required version of python --- README.md | 2 +- setup.cfg | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2bdb494..f2ac295 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This SDK was developed independently using their existing C# SDK, their swagger ### Python -Requires use of Python 3.6.0 or later. +Requires use of Python 3.10.0 or later. ### Requests diff --git a/setup.cfg b/setup.cfg index 3297454..46187d5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = OnspringApiSdk -version = 1.0.1 +version = 2.0.0 author = StevanFreeborn author_email = stevan.freeborn@gmail.com description = A package for interacting with version 2 of the Onspring API. @@ -18,7 +18,7 @@ classifiers = package_dir = = src packages = find: -python_requires = >=3.6 +python_requires = >=3.10 install_requires = Requests [options.packages.find]