Skip to content

Commit 427546e

Browse files
author
mbarber
committed
updated requirements
1 parent 3d9b47e commit 427546e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

openprotein/_version.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
from importlib.metadata import version
1+
try:
2+
from importlib.metadata import version
3+
except ImportError:
4+
from importlib_metadata import version # py 3.7
25

36
__version__ = version("openprotein-python")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ classifiers = [
1313
]
1414

1515
[tool.poetry.dependencies]
16-
python = "^3.7"
16+
python = "^3.8"
1717
requests = ">=2"
1818
pydantic = ">=1"
1919
tqdm = ">=4"

0 commit comments

Comments
 (0)