Skip to content

Commit 213d59d

Browse files
authored
Merge pull request #1595 from roboflow/support/py13
feat: πŸš€ python3.13 support for poetry and library
2 parents 086091a + 62a4d45 commit 213d59d

File tree

3 files changed

+541
-172
lines changed

3 files changed

+541
-172
lines changed

β€Ž.github/workflows/poetry-test.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: πŸ”§ Poetry Check and Installation Test Workflow
2+
on:
3+
push:
4+
paths:
5+
- 'poetry.lock'
6+
- 'pyproject.toml'
7+
pull_request:
8+
paths:
9+
- 'poetry.lock'
10+
- 'pyproject.toml'
11+
workflow_dispatch:
12+
13+
jobs:
14+
poetry-tests:
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
os: [ubuntu-latest, windows-latest, macos-latest]
19+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
20+
runs-on: ${{ matrix.os }}
21+
steps:
22+
- name: πŸ“₯ Checkout the repository
23+
uses: actions/checkout@v4
24+
25+
- name: 🐍 Set up Python ${{ matrix.python-version }}
26+
uses: actions/setup-python@v5
27+
with:
28+
python-version: ${{ matrix.python-version }}
29+
30+
- name: πŸ“¦ Install the base dependencies
31+
run: python -m pip install --upgrade poetry
32+
33+
- name: πŸ” Check the correctness of the project config
34+
run: poetry check
35+
36+
- name: πŸš€ Do Install the package Test
37+
run: poetry install

0 commit comments

Comments
Β (0)