From 9894ad13768fc7fa1431931110da052404a9b035 Mon Sep 17 00:00:00 2001 From: Alex Oskotsky Date: Sun, 3 Nov 2024 13:57:11 -0500 Subject: [PATCH 1/4] Support new python versions --- setup.py | 2 ++ tox.ini | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) 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/tox.ini b/tox.ini index 6d90725..7c699e4 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 \ No newline at end of file From 330dbea00a0ab25c91348edd6bb9c3f63ed5670c Mon Sep 17 00:00:00 2001 From: Alex Oskotsky Date: Sun, 3 Nov 2024 13:57:34 -0500 Subject: [PATCH 2/4] new line --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 7c699e4..8957ae9 100644 --- a/tox.ini +++ b/tox.ini @@ -14,4 +14,4 @@ python = 3.10: py310-unit 3.11: py311-unit 3.12: py312-unit - 3.13: py313-unit \ No newline at end of file + 3.13: py313-unit From 9f42e933dd86822b0e352a2c80b64a14a484ae3b Mon Sep 17 00:00:00 2001 From: Alex Oskotsky Date: Sun, 3 Nov 2024 14:01:56 -0500 Subject: [PATCH 3/4] bump version --- terrawrap/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" From dcf1578f5351e3a0a5b310c9bdd2e94940d98b67 Mon Sep 17 00:00:00 2001 From: Alex Oskotsky Date: Sun, 3 Nov 2024 14:16:32 -0500 Subject: [PATCH 4/4] update github action --- .github/workflows/test-build-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }}