diff --git a/python/pyproject.toml b/python/pyproject.toml index 2868c3e..9a24f8d 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -32,7 +32,7 @@ classifiers = [ dependencies = [ "omegaconf>=2.1", - "numpy>=1.20.0,<2.0.0", + "numpy>=1.20.0,<3.0.0", "torch>=2.1.2", "torchvision>=0.16.2", "lightning>=2.0", diff --git a/python/requirements.txt b/python/requirements.txt index 030e9b5..b9d1051 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -1,4 +1,4 @@ -numpy>=1.20.0,<2.0.0 +numpy>=1.20.0,<3.0.0 torch>=2.1.2 torchvision>=0.16.2 lightning>=2.0 diff --git a/python/setup.py b/python/setup.py index 9300419..90d29c8 100644 --- a/python/setup.py +++ b/python/setup.py @@ -11,7 +11,7 @@ long_description = f.read() setup(name='trustmark', - version='0.9.0', + version='0.10.0', python_requires='>=3.8.5', description='High fidelty image watermarking for the Content Authenticity Initiative (CAI)', url='https://github.com/adobe/trustmark', @@ -24,7 +24,7 @@ package_data={'trustmark': ['**/*.yaml','**/*.ckpt','**/*.md']}, include_package_data = True, install_requires=['omegaconf>=2.1', - 'numpy>=1.20.0,<2.0.0', + 'numpy>=1.20.0,<3.0.0', 'torch>=2.1.2', 'torchvision>=0.16.2', 'lightning>=2.0',