Skip to content

Commit 47b06f7

Browse files
committed
py310
1 parent 5308f51 commit 47b06f7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ jobs:
2424
if: ${{ always() }}
2525
runs-on: ubuntu-latest
2626
name: Test Results
27-
needs: [test-py39]
27+
needs: [test-py310]
2828
steps:
2929
- run: |
30-
result="${{ needs.test-py39.result }}"
30+
result="${{ needs.test-py310.result }}"
3131
if [[ $result == "success" || $result == "skipped" ]]; then
3232
exit 0
3333
else
3434
exit 1
3535
fi
3636
37-
test-py39:
37+
test-py310:
3838
runs-on: ubuntu-latest
3939
strategy:
4040
fail-fast: false
@@ -53,13 +53,13 @@ jobs:
5353
"psycopg"
5454
]
5555
env:
56-
TOXENV: py39
56+
TOXENV: py310
5757
TOX_VERSION: 3.23.1
5858
steps:
5959
- uses: actions/checkout@v4
6060
- uses: actions/setup-python@v5
6161
with:
62-
python-version: '3.9'
62+
python-version: '3.10'
6363
- name: Start CockroachDB
6464
run: |
6565
docker pull cockroachdb/${{ matrix.crdb-version }}
@@ -76,13 +76,13 @@ jobs:
7676
lint:
7777
runs-on: ubuntu-latest
7878
env:
79-
TOXENV: py39
79+
TOXENV: py310
8080
TOX_VERSION: 3.23.1
8181
steps:
8282
- uses: actions/checkout@v4
8383
- uses: actions/setup-python@v5
8484
with:
85-
python-version: '3.9'
85+
python-version: '3.10'
8686
- name: Install testrunner
8787
run: pip install --user tox==${TOX_VERSION}
8888
- name: Lint

0 commit comments

Comments
 (0)