Skip to content

Commit 8fc5e37

Browse files
committed
BUG support python3.10&3.11
1 parent b8638bc commit 8fc5e37

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,10 @@ Clone GMSC-mapper repository
1818
git clone https://github.com/BigDataBiology/GMSC-mapper.git
1919
```
2020

21-
Create conda environment(only support python v3.8-9)
21+
Create conda environment
2222

2323
```bash
24-
conda create -n gmscmapper python=3.8
25-
conda activate gmscmapper
26-
or
27-
conda create -n gmscmapper python=3.9
24+
conda create -n gmscmapper python
2825
conda activate gmscmapper
2926
```
3027

@@ -36,7 +33,7 @@ You will need the following dependencies:
3633
The easiest way to install the dependencies is with [conda](https://conda.io):
3734

3835
```bash
39-
conda install -c conda-forge -c bioconda mmseqs2
36+
conda install -c bioconda -c conda-forge mmseqs2
4037
conda install -c bioconda -c conda-forge diamond=2.0.13
4138
```
4239

requirements.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
atomicwrites==1.4.0
1+
atomicwrites
22
biopython
33
Bottleneck
44
certifi
5-
mkl-service==2.4.0
65
numexpr
76
numpy
87
packaging
9-
pandas==1.4.3
8+
pandas
109
pyparsing
11-
pyrodigal==1.1.1
10+
pyrodigal
1211
python-dateutil
1312
pytz
1413
six

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
'Programming Language :: Python :: 3.8',
2020
'Programming Language :: Python :: 3.9',
2121
'Programming Language :: Python :: 3.10',
22+
'Programming Language :: Python :: 3.11',
2223
],
2324
packages=['gmsc_mapper'],
2425
install_requires=open('./requirements.txt', 'r').read().splitlines(),

0 commit comments

Comments
 (0)