From 36ecbba4a55b0114b61cd9edfc63b71709285972 Mon Sep 17 00:00:00 2001 From: Benjamin Fineran Date: Wed, 5 Oct 2022 16:39:20 -0400 Subject: [PATCH] bump miniminum python version to 3.7 (#236) (#237) --- README.md | 2 +- setup.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a798b50e..abd43707 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ The [GitHub repository](https://github.com/neuralmagic/sparsezoo) contains the P ## Installation -This repository is tested on Python 3.6-3.9, and Linux/Debian systems. +This repository is tested on Python 3.7-3.9, and Linux/Debian systems. It is recommended to install in a [virtual environment](https://docs.python.org/3/library/venv.html) to keep your system in order. Install with pip using: diff --git a/setup.py b/setup.py index 016a215a..af123f52 100644 --- a/setup.py +++ b/setup.py @@ -124,12 +124,11 @@ def _setup_long_description() -> Tuple[str, str]: install_requires=_setup_install_requires(), extras_require=_setup_extras(), entry_points=_setup_entry_points(), - python_requires=">=3.6.0", + python_requires=">=3.7.0", classifiers=[ "Development Status :: 5 - Production/Stable", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",