Skip to content

Commit

Permalink
feat: Support Python 3.13 (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Aug 8, 2024
1 parent 1a58eee commit 9f3b21a
Show file tree
Hide file tree
Showing 4 changed files with 299 additions and 269 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"

steps:
- name: Checkout code
Expand All @@ -28,6 +34,7 @@ jobs:
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: Upgrade pip
run: |
Expand Down
9 changes: 8 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,14 @@
src_dir = "tap_pulumi_cloud"
tests_dir = "tests"

python_versions = ["3.12", "3.11", "3.10", "3.9", "3.8"]
python_versions = [
"3.13",
"3.12",
"3.11",
"3.10",
"3.9",
"3.8",
]
main_python_version = "3.12"
locations = src_dir, tests_dir, "noxfile.py"
nox.options.sessions = ("tests",)
Expand Down
Loading

0 comments on commit 9f3b21a

Please sign in to comment.