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

refactor: change to complex objects instead of raw dictionaries #1

Merged
merged 11 commits into from
Jan 9, 2025
Prev Previous commit
Next Next commit
chore: drop support for Python 3.10
Signed-off-by: Avelino <31996+avelino@users.noreply.github.com>
avelino committed Jan 8, 2025
commit 5a4b3b6ba47905c8369cfbf84374fceea3a6ddc2
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.11", "3.12"]

steps:
- uses: actions/checkout@v4
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -11,10 +11,9 @@
"requests>=2.25.0",
"dacite>=1.8.0"
],
python_requires=">=3.10",
python_requires=">=3.11",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],