diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 48b6bec..a212edc 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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 diff --git a/README.md b/README.md index 9bbfd40..0f01120 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 12ea7d6..fb23845 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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",