Skip to content

Commit 6dfd0e0

Browse files
committed
Bump deps in CI.
[skip ci]
1 parent 623d07c commit 6dfd0e0

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- uses: actions/setup-python@v4
1414
with:
15-
python-version: "3.10"
15+
python-version: "3.12"
1616
- uses: pre-commit/action@v3.0.0

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ['3.9', '3.11']
18+
python-version: ['3.10', '3.12']
1919
defaults:
2020
run:
2121
shell: bash -l {0}
@@ -59,13 +59,13 @@ jobs:
5959
pip install .[test]
6060
6161
- name: Test
62-
if: matrix.python-version != '3.11'
62+
if: matrix.python-version != '3.12'
6363
run: |
6464
conda activate simdec
6565
pytest
6666
6767
- name: Test with coverage
68-
if: matrix.python-version == '3.11'
68+
if: matrix.python-version == '3.12'
6969
run: |
7070
conda activate simdec
7171
pytest --cov simdec --cov-report term-missing

Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ serve-oauth: ## Serve Panel dashboard - Prod mode with OAuth2. Needs: PANEL_OAU
6565

6666
build-local:
6767
docker build -f ./Dockerfile \
68-
--build-arg PANEL_TOKEN=$(PANEL_TOKEN) \
6968
--tag simdec-panel-local:$(version) \
7069
--pull \
7170
./.
@@ -86,7 +85,6 @@ run-local: build-local
8685
build:
8786
docker build -f ./Dockerfile \
8887
--platform linux/amd64 \
89-
--build-arg PANEL_TOKEN=$(PANEL_TOKEN) \
9088
--tag simdec-panel:$(version) \
9189
--pull \
9290
./.

0 commit comments

Comments
 (0)