Skip to content

Commit

Permalink
Merge pull request #144 from tosh2230/3.12
Browse files Browse the repository at this point in the history
Support Python 3.12
  • Loading branch information
tosh2230 authored May 31, 2024
2 parents b8f785f + 4f201e9 commit f134256
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
(github.event_name == 'schedule')
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python 3.11
uses: actions/checkout@v4
- name: Setup Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.11"
python-version: "3.12"
- uses: ./.github/workflows/composite/setup-stairlight
with:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
Expand All @@ -42,7 +42,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions src/stairlight/source/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def render_by_string_template(
except KeyError:
logger.warning(
(
f"Params not found; "
f"Params not found. "
f"source_type: {self.source_type}, "
f"key: {self.key}",
f"params: {params}",
Expand All @@ -209,7 +209,7 @@ def render_by_string_template(
except ValueError:
logger.warning(
(
f"Query rendering failed; "
f"Query rendering failed. "
f"source_type: {self.source_type}, "
f"key: {self.key}",
f"params: {params}",
Expand Down

0 comments on commit f134256

Please # to comment.