From bb29ed4e90facfa510af7685e0e658b501957620 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Tue, 25 Aug 2020 16:33:35 +0200 Subject: Stop pretending to test py<3.6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- README.rst | 24 +++--------------------- tox.ini | 4 +--- 2 files changed, 4 insertions(+), 24 deletions(-) diff --git a/README.rst b/README.rst index 6b65f12..e15c175 100644 --- a/README.rst +++ b/README.rst @@ -73,19 +73,9 @@ behavior. Those are: Requirements ============ gemato is written in Python and compatible with implementations -of Python 3.4+. gemato is currently tested against CPython 3.4 -through 3.7 and PyPy3. - -gemato depends only on standard Python library modules and their -backports. The exact runtime dependencies depend on the standard library -version used. Those are: - -Python 3.6+ - none -- only standard modules are used - -Python 3.4, 3.5 - - pyblake2 -- for BLAKE2 family of hashes [#pyblake2]_ - - pysha3 -- for SHA3 (Keccak) family of hashes [#pysha3]_ +of Python 3.6+. gemato is currently tested against CPython 3.6 +through 3.7 and PyPy3. gemato depends only on standard Python library +modules. Additionally, gemato calls the GnuPG executable to work with OpenPGP signatures. Both GnuPG 1.4.21 and 2.2+ are tested. @@ -95,11 +85,3 @@ References and footnotes ======================== .. [#GLEP74] GLEP 74: Full-tree verification using Manifest files (https://www.gentoo.org/glep/glep-0074.html) - -.. [#pyblake2] BLAKE2 hash function extension module - (https://pypi.python.org/pypi/pyblake2) - (https://github.com/dchest/pyblake2) - -.. [#pysha3] SHA-3 (Keccak) for Python 2.7 - 3.5 - (https://pypi.python.org/pypi/pysha3) - (https://github.com/tiran/pysha3) diff --git a/tox.ini b/tox.ini index 7184704..253d5d3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = qa,py34,py35,py36,py37,py38,py39,pypy3 +envlist = qa,py36,py37,py38,py39,pypy3 skip_missing_interpreters = True # we operate on sources anyway skipsdist = True @@ -16,8 +16,6 @@ deps = pytest pytest-cov pytest-xdist - py34,py35: pyblake2 - py34,py35: pysha3 commands = pytest -vv --cov=gemato --cov-config=.coveragerc -n auto {posargs} -- cgit v1.2.3