Skip to content

Commit

Permalink
Merge pull request #142 from ymyzk/python-312-313
Browse files Browse the repository at this point in the history
Add Python 3.12 and 3.13 to CI jobs
  • Loading branch information
Deconstrained authored Oct 31, 2024
2 parents 0263f81 + 229c8bd commit 0d1fb16
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
32 changes: 31 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,35 @@ jobs:
- run:
<<: *test

workflows:
py3_12:
docker:
- image: cimg/python:3.12
steps:
- checkout
- run:
<<: *venv
- run:
<<: *getenv
- run:
<<: *depinst
- run:
<<: *test

py3_13:
docker:
- image: cimg/python:3.13
steps:
- checkout
- run:
<<: *venv
- run:
<<: *getenv
- run:
<<: *depinst
- run:
<<: *test

workflows:
version: 2.1
run_tests:
jobs:
Expand All @@ -119,4 +147,6 @@ workflows:
- py3_9
- py3_10
- py3_11
- py3_12
- py3_13

2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ manipulated through APIs are left to the user or implementer to make.
Features
--------
- Uses Requests' automatic HTTP connection pooling and persistence
- Tested in / support for Python 3.6 through 3.11
- Tested in / support for Python 3.6 through 3.13
- Abstraction layer for authentication, pagination, filtering and wrapped
entities
- Configurable cooldown/reattempt logic for handling rate limiting and
Expand Down

0 comments on commit 0d1fb16

Please sign in to comment.