Skip to content

Commit 579e681

Browse files
committed
fix install
1 parent 43d5b33 commit 579e681

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env python
12
# Copyright The GeoML Team
23
#
34
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -61,9 +62,9 @@ def load_readme(path_dir=PATH_ROOT):
6162
author_email=torchplot.__author_email__,
6263
license=torchplot.__license__,
6364
packages=find_packages(exclude=["tests", "tests/*"]),
64-
python_requires=">=3.8",
65+
python_requires=">=3",
6566
install_requires=["torch", "matplotlib"],
66-
download_url="https://github.com/CenterBioML/torchplot/archive/0.1.2.zip",
67+
download_url="https://github.com/CenterBioML/torchplot/archive/0.1.3.zip",
6768
classifiers=[
6869
"Environment :: Console",
6970
"Natural Language :: English",
@@ -78,6 +79,6 @@ def load_readme(path_dir=PATH_ROOT):
7879
"Operating System :: OS Independent",
7980
# Specify the Python versions you support here. In particular, ensure
8081
# that you indicate whether you support Python 2, Python 3 or both.
81-
"Programming Language :: Python :: 3.8",
82+
"Programming Language :: Python :: 3"
8283
],
8384
)

0 commit comments

Comments
 (0)