Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
- name: Python Poetry Action
uses: abatilo/actions-poetry@v2.1.3
with:
poetry-version: "1.6.1"
poetry-version: "2.4.1"
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.13"
cache: "poetry"
- name: Install prerequisites
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/install-software.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -26,7 +26,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
# use python-extra AND executable to tests its imports
# https://stackoverflow.com/questions/66025220/paired-values-in-github-actions-matrix
python-extra:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
- name: Python Poetry Action
uses: abatilo/actions-poetry@v3
with:
poetry-version: "1.6.1"
poetry-version: "2.4.1"
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.13"
cache: "poetry"
- name: Install prerequisites
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Python Poetry Action
uses: abatilo/actions-poetry@v2.1.3
with:
poetry-version: "1.6.1"
poetry-version: "2.4.1"
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ tw_gtasks_sync = "syncall.scripts.tw_gtasks_sync:main"

# end-user dependencies --------------------------------------------------------
[tool.poetry.dependencies]
python = ">=3.8.1,<=3.12.5"
python = ">=3.10"

PyYAML = "~5.3.1"
bidict = "^0.21.4"
Expand All @@ -77,7 +77,7 @@ python-dateutil = "^2.9.0.post0"
rfc3339 = "^6.2"
item-synchronizer = "^1.1.5"
bubop = { version = "0.1.12", allow-prereleases = true }
setuptools = { version = "^72.1.0", optional = true, python = ">=3.12" }
setuptools = { version = "<82", optional = true, python = ">=3.12" }

[tool.poetry.extras]
google = ["google-api-python-client", "google-auth-oauthlib", "setuptools"]
Expand Down
Loading