Skip to content

Commit

Permalink
feat: python 3.13 support (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Aug 22, 2024
1 parent d0f0694 commit b808ad1
Show file tree
Hide file tree
Showing 4 changed files with 104 additions and 160 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"

os:
- ubuntu-latest
Expand All @@ -50,9 +51,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- uses: snok/install-poetry@v1.3.3
- name: Install Dependencies
run: |
Expand Down Expand Up @@ -140,7 +142,7 @@ jobs:

# Used to host cibuildwheel
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.10"

Expand All @@ -159,7 +161,7 @@ jobs:
fetch-depth: 0

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.16.2
run: python -m pip install cibuildwheel==2.20.0

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand Down
2 changes: 1 addition & 1 deletion commitlint.config.js → commitlint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
export default {
extends: ["@commitlint/config-conventional"],
rules: {
"header-max-length": [0, "always", Infinity],
Expand Down
Loading

0 comments on commit b808ad1

Please sign in to comment.