hotfix for removing fixed dependency versions (#1096)

This commit is contained in:
Omri Mendels 2023-06-21 10:25:34 +03:00 коммит произвёл GitHub
Родитель 838d402b47
Коммит ced96b0f4d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -6,15 +6,14 @@ from setuptools import setup, find_packages
requirements = [
"pillow>=9.0",
"pytesseract==0.3.7",
"pytesseract>=0.3.7,<0.4",
"presidio-analyzer>=1.9.0",
"matplotlib==3.6.2",
"pydantic==1.7.4",
"matplotlib>=3.6",
"pydicom>=2.3.0",
"pypng>=0.20220715.0",
]
test_requirements = ["pytest>=3", "pytest-mock>=3.10.0", "flake8==3.7.9"]
test_requirements = ["pytest>=3", "pytest-mock>=3.10.0", "flake8>=3.7.9"]
__version__ = ""
this_directory = path.abspath(path.dirname(__file__))