Constrain prototorch version

This commit is contained in:
Jensun Ravichandran 2021-06-20 17:40:07 +02:00
parent b9eb88a602
commit f1f0b313c9
2 changed files with 9 additions and 6 deletions

View File

@ -21,15 +21,19 @@ be available for use in your Python environment as `prototorch.models`.
## Contribution ## Contribution
This repository contains definition for [git hooks](https://githooks.com). This repository contains definition for [git hooks](https://githooks.com).
[Pre-commit](https://pre-commit.com) gets installed as development dependency with prototorch. [Pre-commit](https://pre-commit.com) is automatically installed as development
Please install the hooks by running dependency with prototorch or you can install it manually with `pip install
pre-commit`.
Please install the hooks by running:
```bash ```bash
pre-commit install pre-commit install
pre-commit install --hook-type commit-msg pre-commit install --hook-type commit-msg
``` ```
before creating the first commit. before creating the first commit.
The commit will fail if the commit message does not follow the specification
provided [here](https://www.conventionalcommits.org/en/v1.0.0/#specification).
## Available models ## Available models

View File

@ -22,7 +22,7 @@ with open("README.md", "r") as fh:
long_description = fh.read() long_description = fh.read()
INSTALL_REQUIRES = [ INSTALL_REQUIRES = [
"prototorch>=0.5.0", "prototorch>=0.5.0,<0.6.0",
"pytorch_lightning>=1.3.5", "pytorch_lightning>=1.3.5",
"torchmetrics", "torchmetrics",
] ]
@ -63,7 +63,7 @@ setup(
url=PROJECT_URL, url=PROJECT_URL,
download_url=DOWNLOAD_URL, download_url=DOWNLOAD_URL,
license="MIT", license="MIT",
python_requires=">=3.8", python_requires=">=3.9",
install_requires=INSTALL_REQUIRES, install_requires=INSTALL_REQUIRES,
extras_require={ extras_require={
"dev": DEV, "dev": DEV,
@ -79,7 +79,6 @@ setup(
"Intended Audience :: Science/Research", "Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Natural Language :: English", "Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Scientific/Engineering :: Artificial Intelligence",