Skip to content

Commit

Permalink
feat: python 3.11 support; drop 3.6 and 3.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
akornatskyy committed Jul 28, 2023
1 parent e230608 commit 720c9bd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Resources:
## Install

[wheezy.captcha](https://pypi.org/project/wheezy.captcha/) requires
[python](http://www.python.org) version 3.6+. It is independent of operating
[python](http://www.python.org) version 3.8+. It is independent of operating
system. You can install it from
[pypi](https://pypi.org/project/wheezy.captcha/) site (you need specify
extra requirements per imaging library of your choice):
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
setup(
name="wheezy.captcha",
version=VERSION,
python_requires=">=3.6",
python_requires=">=3.8",
description="A lightweight captcha library",
long_description=README,
long_description_content_type="text/markdown",
Expand All @@ -57,11 +57,10 @@
"Natural Language :: English",
"Operating System :: OS Independent",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
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,py310,pypy3,lint,docs
envlist = py38,py39,py310,py311,pypy3,lint,docs
skipsdist = True

[testenv]
Expand Down

0 comments on commit 720c9bd

Please sign in to comment.