Skip to content

Commit

Permalink
📌 Pin dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
francois-rozet committed Dec 5, 2020
1 parent 9bfa13c commit 3860c5c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion piqa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
specific image quality assessement metric.
"""

__version__ = '1.0.0'
__version__ = '1.0.1'
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
torch>=1.4.0
torchvision>=0.5.0
torch>=1.6.0
torchvision>=0.7.0
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import os
import setuptools
import piqa

with open('README.md', 'r') as f:
readme = f.read()
Expand All @@ -11,7 +12,7 @@

setuptools.setup(
name='piqa',
version='1.0.0',
version=piqa.__version__,
description='PyTorch Image Quality Assessment',
long_description=readme,
long_description_content_type='text/markdown',
Expand All @@ -25,5 +26,6 @@
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
],
python_requires='>=3.6',
)

0 comments on commit 3860c5c

Please sign in to comment.