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 25392b4 commit bf70579
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 @@ -30,7 +30,7 @@ Resources:
## Install

[wheezy.caching](https://pypi.org/project/wheezy.caching/) 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.caching/) site:

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
setup(
name="wheezy.caching",
version=VERSION,
python_requires=">=3.6",
python_requires=">=3.8",
description="A lightweight caching library",
long_description=README,
long_description_content_type="text/markdown",
Expand All @@ -49,11 +49,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 :: Software Development :: Libraries :: Python Modules",
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 bf70579

Please sign in to comment.