Skip to content

Commit

Permalink
Fix Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
matijapretnar committed Dec 20, 2023
1 parent ebe20b5 commit 990daed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.10'
- run: pip install -r web/requirements/local.txt
- run: pip install black==23.1.0 isort==5.12.0 flake8==6.0.0
- run: python3 -m black --check .
Expand Down
2 changes: 1 addition & 1 deletion web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3
FROM python:3.10
ENV PYTHONUNBUFFERED=1
WORKDIR /src
RUN groupadd -g 1000 tomo && useradd -m -u 1000 -g tomo tomo -s /bin/bash
Expand Down

0 comments on commit 990daed

Please sign in to comment.