Skip to content

Commit b2133cd

Browse files
authored
chore: support python 3.13 and drop eol-ed 3.8 (#302)
1 parent 21734cf commit b2133cd

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.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.12",
10+
"VARIANT": "3.13",
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.12"]
13+
python-version: ["3.13"]
1414

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

.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.12"]
13+
python-version: ["3.13"]
1414

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

.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.8", "3.9", "3.10", "3.11", "3.12"]
13+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1414
steps:
1515
- uses: actions/checkout@v4
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.8", "3.9", "3.10", "3.11", "3.12"]
59+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
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.8", "3.9", "3.10", "3.11", "3.12"]
108+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
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.1.0
44
hooks:
55
- id: black
6-
language_version: python3.12
6+
language_version: python3.13
77
- repo: https://github.com/PyCQA/flake8
88
rev: 7.1.2
99
hooks:

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.10.0",
8+
version="1.10.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.8",
23+
python_requires=">=3.9",
2424
install_requires=["boto3==1.35.90", "six==1.17.0"],
2525
entry_points={
2626
"console_scripts": ["dynamodump=dynamodump.dynamodump:main"],

0 commit comments

Comments
 (0)