Skip to content

Commit

Permalink
ci: test package with python 3-8 -> 3.10 only
Browse files Browse the repository at this point in the history
  • Loading branch information
js2264 committed Jan 18, 2024
1 parent 8de72d2 commit 0b53c09
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 0b53c09

Please sign in to comment.