Skip to content

Commit 915eafc

Browse files
Support python 3.13 (#73)
* Support python 3.13 * drop python3.8 support * update github action
1 parent 76e9e86 commit 915eafc

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/test-build-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-22.04
1717
strategy:
1818
matrix:
19-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
19+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2020
steps:
2121
- uses: actions/checkout@master
2222
- name: Set up Python ${{ matrix.python-version }}
@@ -49,7 +49,7 @@ jobs:
4949
- name: Set up Python
5050
uses: actions/setup-python@v2
5151
with:
52-
python-version: 3.12
52+
python-version: 3.13
5353
- name: Update GIT_HASH
5454
run: sed --expression "s|GIT_HASH|$GITHUB_SHA|g" --in-place **/version.py
5555
- name: Build tarball

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repos:
2929
rev: 22.8.0
3030
hooks:
3131
- id: black
32-
language_version: python3.8
32+
language_version: python3.9
3333
- repo: https://github.com/pre-commit/mirrors-mypy
3434
rev: v0.991 # Use the sha / tag you want to point at
3535
hooks:

amplify_aws_utils/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Place of record for the package version"""
22

3-
__version__ = "0.6.0"
3+
__version__ = "0.6.1"
44
__git_hash__ = "GIT_HASH"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def get_requirements():
4848

4949
setup(
5050
name="amplify_aws_utils",
51-
python_requires=">=3.8.0",
51+
python_requires=">=3.9.0",
5252
version=get_version(),
5353
description="Utility functions for working with AWS resources",
5454
long_description=get_long_description(),
@@ -58,11 +58,11 @@ def get_requirements():
5858
"Topic :: Software Development :: Libraries :: Python Modules",
5959
"Programming Language :: Python",
6060
"Programming Language :: Python :: 3",
61-
"Programming Language :: Python :: 3.8",
6261
"Programming Language :: Python :: 3.9",
6362
"Programming Language :: Python :: 3.10",
6463
"Programming Language :: Python :: 3.11",
6564
"Programming Language :: Python :: 3.12",
65+
"Programming Language :: Python :: 3.13",
6666
],
6767
keywords="",
6868
author="Amplify Education",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = {py38}-unit,{py39}-unit,{py310}-unit,{py311}-unit,{py312}-unit
2+
envlist = {py39}-unit,{py310}-unit,{py311}-unit,{py312}-unit,{py313}-unit
33
skipsdist = true
44

55
[testenv]

0 commit comments

Comments
 (0)