-
-
Notifications
You must be signed in to change notification settings - Fork 31
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
Bump versions, drop support for Python 3.8 #205
base: master
Are you sure you want to change the base?
Conversation
pyproject.toml
Outdated
jsonschema = "^4.19.1" | ||
rfc3339-validator = "*" # requred by jsonschema for date-time checker | ||
jsonschema-specifications = ">=2023.5.2" | ||
jsonschema-specifications = "^2024.10.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the point of ^
when using calendar versioning? Releases in January of 2025 aren't more likely to include breaking changes than those in December of 2024.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right, I replaced it with >=
…likely to include breaking changes than those in December of 2024 therefore stick to >=
.github/workflows/python-test.yml
Outdated
@@ -14,7 +14,7 @@ jobs: | |||
runs-on: ubuntu-latest | |||
strategy: | |||
matrix: | |||
python-version: ['3.8', '3.9', '3.10', '3.11'] | |||
python-version: ['3.9', '3.10', '3.11', '3.12'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest adding support python 3.13 in this PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, why not :)
Hello,
Python 3.8 is end of life and I added support for Python 3.12. More importantly I upgraded jsonschema-specifications :)
Also added support for Python 3.13
I hope this is alright.