Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
python-version: ["3.10"]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -41,7 +41,7 @@ jobs:
run: |
mypy src tests
- name: Run clang-format style check for C/C++ programs.
uses: jidicula/clang-format-action@v3.3.0
uses: jidicula/clang-format-action@v4.11.0
with:
clang-format-version: "11"
check-path: "/src/bindings/"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
python-version: ["3.10"]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ requires = [

[tool.poetry]
name = "pydp"
version = "1.1.5.rc11"
version = "1.1.5"
description = ""
authors = [
"Chinmay Shah <chinmayshah3899@gmail.com>",
]
license = "Apache-2.0"

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.11"

[tool.poetry.dev-dependencies]
black = "*"
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.1.5.rc11
current_version = 1.1.5
commit = True
tag = True

Expand All @@ -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]
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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,
)
2 changes: 1 addition & 1 deletion src/pydp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
from pydp import util
from pydp import ml

__version__ = "1.1.5.rc11"
__version__ = "1.1.5"
Loading