Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add python 3.13 in CI matrix. #185

Merged
merged 10 commits into from
Dec 6, 2024
Merged

Conversation

Mr-Sunglasses
Copy link
Contributor

fix: #184

@manunio
Copy link
Contributor

manunio commented Nov 20, 2024

CI is failing because atheris(used for fuzzing) only supports upto 3.11, following change may fix this.

diff --git a/pyproject.toml b/pyproject.toml
index e22ea1d..195c940 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -47,7 +47,7 @@ dev-dependencies = [
     "ruff==0.3.4",
     "mypy",
     "types-PyYAML",
-    "atheris==2.3.0; python_version != '3.12'",
+    "atheris==2.3.0; python_version <= '3.11'",
     # Documentation
     "mkdocs",
     "mkdocs-material",

@Mr-Sunglasses
Copy link
Contributor Author

CI is failing because atheris(used for fuzzing) only supports upto 3.11, following change may fix this.

diff --git a/pyproject.toml b/pyproject.toml
index e22ea1d..195c940 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -47,7 +47,7 @@ dev-dependencies = [
     "ruff==0.3.4",
     "mypy",
     "types-PyYAML",
-    "atheris==2.3.0; python_version != '3.12'",
+    "atheris==2.3.0; python_version <= '3.11'",
     # Documentation
     "mkdocs",
     "mkdocs-material",

Thanks a lot @manunio

@Kludex Kludex merged commit f1c5a28 into Kludex:master Dec 6, 2024
7 checks passed
@Kludex
Copy link
Owner

Kludex commented Dec 6, 2024

Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Upgrade CI to python-3.13
3 participants