diff --git a/.github/workflows/test-build-publish.yml b/.github/workflows/test-build-publish.yml index 5fd2a42..4db2a96 100644 --- a/.github/workflows/test-build-publish.yml +++ b/.github/workflows/test-build-publish.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@master - name: Set up Python ${{ matrix.python-version }} diff --git a/setup.py b/setup.py index 2ee6cdf..abb33dd 100644 --- a/setup.py +++ b/setup.py @@ -65,6 +65,8 @@ def get_requirements(): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ], keywords="", author="Amplify Education", diff --git a/terrawrap/version.py b/terrawrap/version.py index 8d1410d..45199c1 100644 --- a/terrawrap/version.py +++ b/terrawrap/version.py @@ -1,4 +1,4 @@ """Place of record for the package version""" -__version__ = "0.10.2" +__version__ = "0.10.3" __git_hash__ = "GIT_HASH" diff --git a/tox.ini b/tox.ini index 6d90725..8957ae9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = {py38}-unit,{py39}-unit,{py310}-unit,{py311}-unit +envlist = {py38}-unit,{py39}-unit,{py310}-unit,{py311}-unit,{py312}-unit,{py313}-unit skipsdist = true [testenv] @@ -13,3 +13,5 @@ python = 3.9: py39-unit 3.10: py310-unit 3.11: py311-unit + 3.12: py312-unit + 3.13: py313-unit