Skip to content

Commit 690d644

Browse files
authored
chore: support python 3.14 and drop eol-ed 3.9 (#325)
1 parent e1d5988 commit 690d644

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.191.1/containers/python-3/.devcontainer/base.Dockerfile
22

33
# [Choice] Python version
4-
ARG VARIANT="3.13"
4+
ARG VARIANT="3.14"
55
FROM mcr.microsoft.com/vscode/devcontainers/python:${VARIANT}
66

77
# [Choice] Node.js version: none, lts/*, 16, 14, 12, 10

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"context": "..",
88
"args": {
99
// Update 'VARIANT' to pick a Python version
10-
"VARIANT": "3.13",
10+
"VARIANT": "3.14",
1111
// Options
1212
"NODE_VERSION": "none"
1313
}

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.13"]
13+
python-version: ["3.14"]
1414

1515
steps:
1616
- uses: actions/checkout@v5

.github/workflows/linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.13"]
13+
python-version: ["3.14"]
1414

1515
steps:
1616
- uses: actions/checkout@v5

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
13+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1414
steps:
1515
- uses: actions/checkout@v5
1616
- name: Set up Python ${{ matrix.python-version }}
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-latest
5757
strategy:
5858
matrix:
59-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
59+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
6060
env:
6161
DUMP_PATH: abc
6262
steps:
@@ -105,7 +105,7 @@ jobs:
105105
runs-on: ubuntu-latest
106106
strategy:
107107
matrix:
108-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
108+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
109109
env:
110110
DUMP_PATH: /tmp/abs
111111
steps:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ repos:
33
rev: 25.9.0
44
hooks:
55
- id: black
6-
language_version: python3.13
6+
language_version: python3.14
77
- repo: https://github.com/PyCQA/flake8
88
rev: 7.3.0
99
hooks:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.13.7-alpine
1+
FROM python:3.14.0-alpine
22

33
COPY ./requirements.txt /mnt/dynamodump/requirements.txt
44
COPY ./dynamodump/dynamodump.py /usr/local/bin/dynamodump

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="dynamodump",
8-
version="1.11.0",
8+
version="1.11.1",
99
author="Benny Chew",
1010
author_email="[email protected]",
1111
description="Simple backup and restore for Amazon DynamoDB using AWS SDK for Python (boto3)",
@@ -20,7 +20,7 @@
2020
"License :: OSI Approved :: MIT License",
2121
],
2222
packages=["dynamodump"],
23-
python_requires=">=3.9",
23+
python_requires=">=3.10",
2424
install_requires=["boto3==1.40.43", "six==1.17.0"],
2525
entry_points={
2626
"console_scripts": ["dynamodump=dynamodump.dynamodump:main"],

0 commit comments

Comments
 (0)