From 5c75ab43e1cd0079744b51431aa30bf312f90ce7 Mon Sep 17 00:00:00 2001 From: Andriy Kornatskyy Date: Tue, 18 Jul 2023 20:25:26 +0300 Subject: [PATCH] feat: python 3.11 support; drop 3.6 and 3.7. --- README.md | 2 +- setup.py | 5 ++--- tox.ini | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 86f8a54..2495d95 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Resources: ## Install [wheezy.security](https://pypi.org/project/wheezy.security/) requires -[python](https://www.python.org) version 3.6+. It is independent of operating +[python](https://www.python.org) version 3.8+. It is independent of operating system. You can install it from [pypi](https://pypi.org/project/wheezy.security/) site: diff --git a/setup.py b/setup.py index 0d4e476..1c5979e 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ setup( name="wheezy.security", version=VERSION, - python_requires=">=3.6", + python_requires=">=3.8", description="A lightweight security/cryptography library", long_description=README, long_description_content_type="text/markdown", @@ -52,11 +52,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 :: Security", diff --git a/tox.ini b/tox.ini index f3ceacc..d1ce5dd 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{36,37,38,39,310,py3}-{pycrypto,pycryptodome,pycryptodomex,cryptography},lint,docs +envlist = py{38,39,310,311,py3}-{pycrypto,pycryptodome,pycryptodomex,cryptography},lint,docs skipsdist = True [testenv]