From 1227d7c07bff219c5ac5b0ebe37f4957ce6d7ab6 Mon Sep 17 00:00:00 2001 From: Simon Pichugin Date: Tue, 26 Mar 2024 13:20:20 -0700 Subject: [PATCH] Prepare release 0.4.0 --- CHANGES.txt | 6 ++++++ pyasn1_modules/__init__.py | 2 +- requirements.txt | 2 +- setup.cfg | 2 +- tox.ini | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 5414f180..b8aa1c47 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,9 @@ +Revision 0.4.0, released 26-03-2024 +--------------------------------------- + +- Added support for Python 3.11, 3.12 +- Removed support for EOL Pythons 2.7, 3.6, 3.7 + Revision 0.3.0, released 19-04-2023 --------------------------------------- diff --git a/pyasn1_modules/__init__.py b/pyasn1_modules/__init__.py index 95a220ef..633dc1a0 100644 --- a/pyasn1_modules/__init__.py +++ b/pyasn1_modules/__init__.py @@ -1,2 +1,2 @@ # http://www.python.org/dev/peps/pep-0396/ -__version__ = '0.3.0' +__version__ = '0.4.0' diff --git a/requirements.txt b/requirements.txt index 943e6cd8..5ec9d478 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -pyasn1>=0.4.7,<0.6.0 +pyasn1>=0.4.7,<0.7.0 diff --git a/setup.cfg b/setup.cfg index 6c7d267c..877be428 100644 --- a/setup.cfg +++ b/setup.cfg @@ -43,6 +43,6 @@ python_requires = >=3.8 zip_safe = True setup_requires = setuptools install_requires = - pyasn1>=0.4.6,<0.6.0 + pyasn1>=0.4.6,<0.7.0 packages = pyasn1_modules diff --git a/tox.ini b/tox.ini index d814f303..2e4d3ad7 100644 --- a/tox.ini +++ b/tox.ini @@ -10,7 +10,7 @@ skip_missing_interpreters = true commands = {envpython} -m unittest discover -s tests deps = - pyasn1>=0.4.6,<0.6.0 + pyasn1>=0.4.6,<0.7.0 [testenv:cover] basepython = python3