Skip to content

Commit f4e9550

Browse files
author
Dirk Petersen
committed
updating python version
1 parent be1fc1b commit f4e9550

6 files changed

+7
-7
lines changed

Diff for: .github/workflows/froster-local-install.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Python
1616
uses: actions/setup-python@v5
1717
with:
18-
python-version: '3.10'
18+
python-version: '3.11'
1919

2020
- name: Install pipx
2121
run: python -m pip install pipx

Diff for: .github/workflows/froster-remote-install.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Python
1313
uses: actions/setup-python@v5
1414
with:
15-
python-version: '3.10'
15+
python-version: '3.11'
1616

1717
- name: Install pipx
1818
run: python -m pip install pipx

Diff for: .github/workflows/pypi-release-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Set up Python
5353
uses: actions/setup-python@v3
5454
with:
55-
python-version: '3.10'
55+
python-version: '3.11'
5656

5757
- name: Install pipx
5858
run: python -m pip install pipx

Diff for: .github/workflows/test-basic-features.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1313

1414
steps:
1515

Diff for: .github/workflows/test-credentials.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1313

1414
steps:
1515

Diff for: pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "froster"
7-
version = "0.19.0"
7+
version = "0.20.0"
88
description = "Froster is a tool for easy data transfer between local file systems and AWS S3 storage."
99
authors = ["Dirk Petersen <[email protected]>", "Victor Machado <[email protected]>"]
1010
readme = "README.md"
1111
license = "MIT"
1212

1313
[tool.poetry.dependencies]
14-
python = "^3.8"
14+
python = "^3.9"
1515
boto3 = "^1.35.14"
1616
duckdb = "^1.0.0"
1717
inquirer = "^3.2.4"

0 commit comments

Comments
 (0)