diff --git a/pyproject.toml b/pyproject.toml index 11e9fb69..fdd0ea1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ requires = [ [tool.poetry] name = "pydp" -version = "1.1.5.rc11" +version = "1.1.5" description = "" authors = [ "Chinmay Shah ", @@ -14,7 +14,7 @@ authors = [ license = "Apache-2.0" [tool.poetry.dependencies] -python = "^3.9" +python = "^3.11" [tool.poetry.dev-dependencies] black = "*" diff --git a/setup.cfg b/setup.cfg index 71884547..514c8c7a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.5.rc11 +current_version = 1.1.5 commit = True tag = True @@ -18,7 +18,7 @@ replace = __version__ = "{new_version}" max-line-length = 120 [mypy] -python_version = 3.9 +python_version = 3.11 ignore_missing_imports = True [tool:pytest] diff --git a/setup.py b/setup.py index 7d6f62be..b4bf6f6b 100755 --- a/setup.py +++ b/setup.py @@ -65,10 +65,10 @@ def read(fname): "Intended Audience :: Developers", "Natural Language :: English", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ], cmdclass={"build_ext": Build}, description="Python API for Google's Differential Privacy library", @@ -86,9 +86,9 @@ def read(fname): }, packages=find_packages(where="src", exclude=["tests"]), setup_requires=setup_requirements, - python_requires=">=3.8", + python_requires=">=3.11", test_suite="tests", url="https://github.com/OpenMined/PyDP", - version="1.1.5.rc11", + version="1.1.5", zip_safe=False, ) diff --git a/src/pydp/__init__.py b/src/pydp/__init__.py index a1586e99..fb9324c9 100644 --- a/src/pydp/__init__.py +++ b/src/pydp/__init__.py @@ -7,4 +7,4 @@ from pydp import util from pydp import ml -__version__ = "1.1.5.rc11" +__version__ = "1.1.5"