From 3c85df6976ae6058234bda4b503b2d48d3de779d Mon Sep 17 00:00:00 2001 From: Karl Gordon Date: Fri, 16 Aug 2024 11:31:16 -0400 Subject: [PATCH 1/3] updating coverage python version --- .github/workflows/tox-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tox-tests.yml b/.github/workflows/tox-tests.yml index 3bc211dc..f0384c4a 100644 --- a/.github/workflows/tox-tests.yml +++ b/.github/workflows/tox-tests.yml @@ -95,14 +95,14 @@ jobs: - name: Set up python for coverage test uses: actions/setup-python@v4 with: - python-version: 3.9 + python-version: 3.10 - name: Install base dependencies run: | python -m pip install --upgrade pip python -m pip install tox - name: Test with tox run: | - tox -e py309-cov -- --remote-data + tox -e py310-cov -- --remote-data # - name: Upload coverage results to codecov # run: | # curl -Os https://uploader.codecov.io/latest/linux/codecov From 1031955422a484b81309341b1668497aa0318cf1 Mon Sep 17 00:00:00 2001 From: Karl Gordon Date: Fri, 16 Aug 2024 11:40:19 -0400 Subject: [PATCH 2/3] updating to 3.11 --- .github/workflows/tox-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tox-tests.yml b/.github/workflows/tox-tests.yml index f0384c4a..2cd8967e 100644 --- a/.github/workflows/tox-tests.yml +++ b/.github/workflows/tox-tests.yml @@ -95,14 +95,14 @@ jobs: - name: Set up python for coverage test uses: actions/setup-python@v4 with: - python-version: 3.10 + python-version: 3.11 - name: Install base dependencies run: | python -m pip install --upgrade pip python -m pip install tox - name: Test with tox run: | - tox -e py310-cov -- --remote-data + tox -e py311-cov -- --remote-data # - name: Upload coverage results to codecov # run: | # curl -Os https://uploader.codecov.io/latest/linux/codecov From f68e6b0c5207d89b3d7564cd09ae29397b4269bd Mon Sep 17 00:00:00 2001 From: Karl Gordon Date: Fri, 16 Aug 2024 12:30:13 -0400 Subject: [PATCH 3/3] updating github action version --- .github/workflows/tox-tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tox-tests.yml b/.github/workflows/tox-tests.yml index 2cd8967e..8ee9366d 100644 --- a/.github/workflows/tox-tests.yml +++ b/.github/workflows/tox-tests.yml @@ -39,7 +39,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up python 3.${{ matrix.python-ver }} with tox environment py3${{ matrix.python-ver }}-${{ matrix.tox-env }} on ${{ matrix.os }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.${{ matrix.python-ver }} - name: Install base dependencies @@ -75,7 +75,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up python for astropy lts test - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.11 - name: Install base dependencies @@ -93,7 +93,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up python for coverage test - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.11 - name: Install base dependencies @@ -127,7 +127,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python to build docs with sphinx - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.12 - name: Install base dependencies @@ -147,7 +147,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Python codestyle check - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.12 - name: Install base dependencies