From 0b53c09f7466061b78440b86719469bad98771cb Mon Sep 17 00:00:00 2001 From: js2264 Date: Thu, 18 Jan 2024 15:08:44 +0100 Subject: [PATCH] ci: test package with python 3-8 -> 3.10 only --- .github/workflows/python-package.yml | 2 +- README.md | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index ebe9c50..aba3555 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10'] steps: diff --git a/README.md b/README.md index 9423f18..ecc6215 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Metagenomic Tridimensional Organisation-based Reassembly - A set of scripts that ### Requirements -* Python 3.6 or later is required. +* Python `3.8` to `3.10` or later is required. * The following librairies are required but will be automatically installed with the pip installation: `numpy`, `scipy`, `sklearn`, `pandas`, `docopt`, `networkx` `biopython` `pyfastx`, `pysam`, `micomplete` and `pairix`. * The following software should be installed separately if you used the pip installation: * [bowtie2](http://bowtie-bio.sourceforge.net/bowtie2/index.shtml) diff --git a/setup.py b/setup.py index cfab5c5..4147582 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ classifiers=CLASSIFIERS, url=URL, packages=find_packages(), - python_requires=">=3.6", + python_requires=">=3.8,<=3.10", include_package_data=True, long_description_content_type="text/markdown", install_requires=REQUIREMENTS,