Skip to content

Commit

Permalink
Drop Python 3.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
whoisxmlapi committed Nov 30, 2023
1 parent 9b3ec21 commit aa18991
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@

Changelog
=========
1.1.2 (2023-11-30)
------------------

* Add list categories method
* Minimum Python version is now 3.7

1.1.1 (2023-10-30)
------------------

* Migrate to Website Categorization API v3

1.0.0 (2021-07-08)
------------------
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def read(*names, **kwargs):
setup(
name='website-categorization',
version=version_content['VERSION'],
python_requires='>=3.6',
python_requires='>=3.7',
license='MIT',
description='Python client library for Website Categorization API.',
long_description='%s\n%s' % (
Expand All @@ -51,10 +51,11 @@ def read(*names, **kwargs):
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'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',
'Topic :: Utilities',
],
keywords=[
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = {py36,py37,py38,py39}
envlist = {py37,py38,py39,py310,py311}

[testenv]
passenv =
Expand Down

0 comments on commit aa18991

Please sign in to comment.