Skip to content

Commit

Permalink
Support new python versions (#192)
Browse files Browse the repository at this point in the history
* Support new python versions

* new line

* bump version

* update github action
  • Loading branch information
aoskotsky-amplify authored Nov 4, 2024
1 parent 9d327fe commit 079f1b0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion terrawrap/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Place of record for the package version"""

__version__ = "0.10.2"
__version__ = "0.10.3"
__git_hash__ = "GIT_HASH"
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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]
Expand All @@ -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

0 comments on commit 079f1b0

Please sign in to comment.