From 8a4dc73acb8d3a6284f9b04e5fcc43efdde4b418 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Goran=20Vrba=C5=A1ki?= Date: Wed, 12 Oct 2022 12:31:01 +0200 Subject: [PATCH] [BREAKING] Drop support for Python 3.6 --- .github/workflows/python-test.yml | 2 +- README.md | 2 +- readthedocs.yml | 2 +- setup.py | 5 ++--- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index c3cb083..624e847 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9, "3.10"] + python-version: [3.7, 3.8, 3.9, "3.10"] steps: - uses: actions/checkout@v3 diff --git a/README.md b/README.md index d372e94..3a7d083 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Read The Docs][ReadtheDocs]](https://python-namesilo.readthedocs.io) [![DonateMe][PaypalBadge]](https://paypal.me/goranvrbaski) -This code is written in Python, and the following versions are supported: `3.6`, `3.7`, `3.8`, `3.9`, `3.10`. +This code is written in Python, and the following versions are supported: `3.7`, `3.8`, `3.9`, `3.10`. If you want to contribute to this project feel free to contact me at any time. If you're using this module and diff --git a/readthedocs.yml b/readthedocs.yml index 1afb6e7..3942f2c 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -2,4 +2,4 @@ build: image: latest python: - version: 3.6 \ No newline at end of file + version: 3.7 \ No newline at end of file diff --git a/setup.py b/setup.py index 3bd0e64..b6e2b03 100644 --- a/setup.py +++ b/setup.py @@ -9,17 +9,16 @@ setup( name='python-namesilo', - version='1.4.1', + version='1.5.0', packages=find_packages(exclude=['docs', 'tests']), install_requires=['requests', 'xmltodict'], - python_requires='>=3.6,<=3.10', + python_requires='>=3.7,<=3.10', py_modules=['namesilo'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9',