Skip to content

Commit 998be51

Browse files
authored
Merge pull request #33 from ym3141/main
relax the requirement of onnxruntime to >=1.16.3
2 parents 64997ff + 44e65b7 commit 998be51

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ python = "^3.9"
1818
biopython = "^1.83"
1919
ipywidgets = "^7.0.0"
2020
numpy = "<2.0.0"
21-
onnxruntime = "^1.17.3"
21+
onnxruntime = "^1.16.3"
2222
pandas = "^2.0.0"
2323
python_codon_tables = "^0.1.12"
2424
pytorch_lightning = "^2.2.1"
@@ -31,7 +31,7 @@ transformers = "^4.40.0"
3131
CAI-PyPI = "^2.0.1"
3232

3333
[tool.poetry.dev-dependencies]
34-
coverage = "^7.0"
34+
coverage = {version = "^7.0", extras = ["toml"]}
3535

3636
[build-system]
3737
requires = ["poetry-core>=1.0.0"]
@@ -51,3 +51,9 @@ quote-style = "double"
5151
indent-style = "space"
5252
skip-magic-trailing-comma = false
5353
line-ending = "auto"
54+
55+
[tool.coverage.run]
56+
omit = [
57+
# omit pytorch-generated files in /tmp
58+
"/tmp/*",
59+
]

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ biopython>=1.83,<2.0
22
CAI-PyPI>=2.0.1,<3.0
33
ipywidgets>=7.0.0,<10.0
44
numpy>=1.26.4,<2.0
5-
onnxruntime>=1.17.3,<3.0
5+
onnxruntime>=1.16.3,<3.0
66
pandas>=2.0.0,<3.0
77
python_codon_tables>=0.1.12,<1.0
88
pytorch_lightning>=2.2.1,<3.0

0 commit comments

Comments
 (0)