Skip to content

Commit 79a27ce

Browse files
yusuf1759tjduigna
andauthored
Cleanup dependencies (#51)
* remove dependency on data.utils.annotations.extras * test: fix tests * chore: delete data.utils.annotations.extras * chore: cleanup pyproject.toml * chore: fix linting * chore: remove extras.py test * chore: cleanup src/plinder/data/structure/atoms.py * chore: remove src/plinder/data/structure/models.py * chore: cleanup tests/test_annotations.py * chore: cleanup tests/test_atoms.py * chore: update pip-compile for removed deps * fix: add tabulate back for networkit bumpversion minor --------- Co-authored-by: Thomas Duignan <thomas.j.duignan@gmail.com>
1 parent d05568b commit 79a27ce

11 files changed

Lines changed: 172 additions & 1640 deletions

File tree

dockerfiles/base/requirements.txt

Lines changed: 143 additions & 106 deletions
Large diffs are not rendered by default.

flows/docker.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ def get_version_bump(base_tag: str | None = None) -> str:
7474
),
7575
text=True,
7676
).strip()
77-
if log and "origin/main" in log:
77+
# origin/main hack was to get around docs branch but isn'try:
78+
# present before pushing the tag back to main so just search for PR number
79+
if log and "(#" in log:
7880
bump = token.split()[1]
7981
break
8082
if bump == "skip":

pyproject.toml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,8 @@ dependencies = [
1212
"nbformat",
1313
"google-cloud-storage",
1414
"gcsfs",
15-
"tabulate",
1615
"gemmi",
1716
"rdkit==2023.9.5",
18-
"pytest",
19-
"pdb2pqr",
20-
"molecular-rectifier",
21-
"hydride",
22-
"pdbeccdutils",
23-
"oddt",
2417
"pyarrow",
2518
"omegaconf",
2619
"mmcif",

requirements_data.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
networkit >= 11.0
2+
tabulate
23
pdb-validation @ git+https://git.scicore.unibas.ch/schwede/ligand-validation.git
34
mmpdb @ git+https://github.com/rdkit/mmpdb.git

0 commit comments

Comments
 (0)