diff --git a/setup.cfg b/setup.cfg index 5bb6cfce..6289c6c3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,3 +2,4 @@ conda_name_differences = 'torch:pytorch' channels = pytorch +noarch = True diff --git a/setup.py b/setup.py index 3eea9d29..882ed467 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,7 @@ setup( 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Topic :: Scientific/Engineering', 'Topic :: Scientific/Engineering :: Artificial Intelligence', 'Topic :: Software Development', @@ -42,6 +43,6 @@ setup( keywords='pytorch pretrained models efficientnet mobilenetv3 mnasnet', packages=find_packages(exclude=['convert', 'tests', 'results']), include_package_data=True, - install_requires=['torch >= 1.0', 'torchvision'], + install_requires=['torch >= 1.4', 'torchvision'], python_requires='>=3.6', ) diff --git a/timm/version.py b/timm/version.py index 80eb7f98..bfeb9e74 100644 --- a/timm/version.py +++ b/timm/version.py @@ -1 +1 @@ -__version__ = '0.3.3' +__version__ = '0.3.4'