Skip to content

Commit

Permalink
Use Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
fivegrant committed Feb 22, 2024
1 parent 1651b88 commit 4f60e30
Show file tree
Hide file tree
Showing 6 changed files with 179 additions and 193 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/correctness.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.5.1
poetry-version: 1.7.1
- name: Create environment
run: poetry install
- name: Install pyciemss
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/formatting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.5.1
poetry-version: 1.7.1
- name: Create environment
run: poetry install
- name: Black
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.api
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10
FROM python:3.11

WORKDIR /
RUN pip install --no-cache-dir poetry==1.5.1
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.worker
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10
FROM python:3.11

# RUN wget --no-verbose -O julia.tar.gz "https://julialang-s3.julialang.org/bin/linux/$(uname -m|sed 's/86_//')/1.9/julia-1.9.2-linux-$(uname -m).tar.gz"
# RUN tar -xzf "julia.tar.gz" && mv julia-1.9.2 /opt/julia && \
Expand Down
Loading

0 comments on commit 4f60e30

Please sign in to comment.