From 98106114cd042c87e29b8a5e8aeb034186258214 Mon Sep 17 00:00:00 2001 From: Dan Birman Date: Mon, 4 Nov 2024 14:35:42 -0800 Subject: [PATCH] feat: update python versions --- .github/workflows/publish_dev.yml | 4 ++-- .github/workflows/tag_and_publish_main.yml | 8 ++++---- .github/workflows/test_and_lint.yml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish_dev.yml b/.github/workflows/publish_dev.yml index 7210ffd..2ce37b9 100644 --- a/.github/workflows/publish_dev.yml +++ b/.github/workflows/publish_dev.yml @@ -38,10 +38,10 @@ jobs: AWS_ECS_SERVICE : ${{ vars.AWS_ECS_SERVICE_DEV }} steps: - uses: actions/checkout@v3 - - name: Set up Python 3.9 + - name: Set up Python 3.10 uses: actions/setup-python@v3 with: - python-version: 3.9 + python-version: 3.10 - name: Configure aws credentials uses: aws-actions/configure-aws-credentials@v2 with: diff --git a/.github/workflows/tag_and_publish_main.yml b/.github/workflows/tag_and_publish_main.yml index 6809c9a..3ebcc66 100644 --- a/.github/workflows/tag_and_publish_main.yml +++ b/.github/workflows/tag_and_publish_main.yml @@ -16,10 +16,10 @@ jobs: ref: ${{ env.DEFAULT_BRANCH }} fetch-depth: 0 token: ${{ secrets.SERVICE_TOKEN }} - - name: Set up Python 3.8 + - name: Set up Python 3.10 uses: actions/setup-python@v3 with: - python-version: 3.8 + python-version: 3.10 - name: Install dependencies run: | python -m pip install -e .[dev] --no-cache-dir @@ -74,10 +74,10 @@ jobs: - uses: actions/checkout@v3 - name: Pull latest changes run: git pull origin main - - name: Set up Python 3.8 + - name: Set up Python 3.10 uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.10 - name: Install dependencies run: | pip install --upgrade setuptools wheel twine build diff --git a/.github/workflows/test_and_lint.yml b/.github/workflows/test_and_lint.yml index c8d832d..7ce7f31 100644 --- a/.github/workflows/test_and_lint.yml +++ b/.github/workflows/test_and_lint.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ '3.8', '3.9', '3.10' ] + python-version: [ '3.10', '3.11', '3.12', '3.13' ] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }}