Skip to content

Commit

Permalink
Merge pull request #155 from kurusugawa-computer/python313-support
Browse files Browse the repository at this point in the history
Python 3.13に対応しました
  • Loading branch information
seraphr authored Dec 24, 2024
2 parents 3f1451b + 946d043 commit 0b565fc
Show file tree
Hide file tree
Showing 4 changed files with 229 additions and 85 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
python-version: "3.12"
- name: Install poetry
run: |
python -m pip install "poetry==1.8.3"
python -m pip install "poetry<1.9"
poetry self add "poetry-dynamic-versioning[plugin]@1.4.0"
- name: Publish
env:
Expand Down
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@ python:
- "3.10"
- "3.11"
- "3.12"

- "3.13"
install:
- pip install pip --upgrade
- pip install poetry==1.8
- pip install "poetry<1.9"
- poetry install

script:
make lint && make test

branches:
- master
- develop
only:
- master
- develop
Loading

0 comments on commit 0b565fc

Please sign in to comment.