Skip to content

Commit 43d5b33

Browse files
committed
fix build dependencies
1 parent fee5557 commit 43d5b33

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ def load_readme(path_dir=PATH_ROOT):
6262
license=torchplot.__license__,
6363
packages=find_packages(exclude=["tests", "tests/*"]),
6464
python_requires=">=3.8",
65-
install_requires=["torch>=1.6", "matplotlib>=3.3.3"],
66-
download_url="https://github.com/CenterBioML/torchplot/archive/0.1.1.zip",
65+
install_requires=["torch", "matplotlib"],
66+
download_url="https://github.com/CenterBioML/torchplot/archive/0.1.2.zip",
6767
classifiers=[
6868
"Environment :: Console",
6969
"Natural Language :: English",

torchplot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import time
1717

1818
_this_year = time.strftime("%Y")
19-
__version__ = "0.1"
19+
__version__ = "0.1.2"
2020
__author__ = "Nicki Skafte Detlefsen et al."
2121
__author_email__ = "nsde@dtu.dk"
2222
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)