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
5 changes: 4 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ jobs:
fail-fast: false
matrix:
# We test only the minimum and the maximum supported versions of python
python-version: ["3.9", "3.12"]
python-version: ["3.9", "3.13"]
pandas-version: ["1.4", "2.1"]
exclude:
python-version: "3.13"
pandas-version: "1.4"

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ description of the framework and the attack algorithms can be found in the paper

## Setup and installation

`Anonymeter` supports Python from 3.9 to 3.12. The simplest way to install `Anonymeter` is from `PyPi`. Simply run
`Anonymeter` supports Python from 3.9 to 3.13. The simplest way to install `Anonymeter` is from `PyPi`. Simply run

```
pip install anonymeter
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ authors = [
]
description = "Measure singling out, linkability, and inference risk for synthetic data."
readme = "README.md"
requires-python = "<3.13, >=3.9"
requires-python = "<3.14, >=3.9"
license = {file = "LICENSE.md"}
classifiers = [
"Programming Language :: Python :: 3",
Expand Down