Skip to content

Commit

Permalink
[BREAKING] Drop support for Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
goranvrbaski committed Oct 12, 2022
1 parent d384cbe commit 8a4dc73
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ build:
image: latest

python:
version: 3.6
version: 3.7
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 8a4dc73

Please sign in to comment.