Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit 37e123f

Browse files
authored
fix python version in pyproject.toml (#15)
* fix python version * update `README.md` * typo
1 parent 3645996 commit 37e123f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ docker pull ghcr.io/haddocking/proabc-2:latest
2828

2929
> proABC-2 has some [third-party](THIRD_PARTY.md) dependencies that must be installed before running the software.
3030
31-
proABC-2 is available on PyPI and can be installed using pip:
31+
proABC-2 is available on PyPI and can be installed using pip using Python3.7:
3232

3333
```text
3434
pip install proabc-2
@@ -61,6 +61,7 @@ echo ">APDB_L\nDIQMTQSPSSLSASVGDRVTITCSASQDISNYLNWYQQKPGKAPKVLIYFTSSLHSGVPSRFSGS
6161
```bash
6262
docker run \
6363
--rm \
64+
--user $(id -u):$(id -g) \
6465
-v `pwd`:/data \
6566
ghcr.io/haddocking/proabc-2:latest \
6667
proabc2-prediction/ heavy.fasta light.fasta

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ classifiers = [
1515
]
1616

1717
[tool.poetry.dependencies]
18-
python = "^3.7"
18+
python = "3.7.*"
1919
tensorflow = "1.14.0"
2020
biopython = "1.74"
2121
pandas = "^0.25"

0 commit comments

Comments
 (0)