Skip to content

Commit

Permalink
Merge pull request #42 from jmolina4/fix_gitpod
Browse files Browse the repository at this point in the history
Forcing python 3.10.6 for the interview
  • Loading branch information
lauris-tw authored Dec 4, 2023
2 parents 663e0e9 + 2f21058 commit 476f2dd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# You could use `gitpod/workspace-full` as well.
FROM gitpod/workspace-python

RUN pyenv install 3.10.6 \
&& pyenv global 3.10.6
5 changes: 3 additions & 2 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
# and commit this file to your remote git repository to share the goodness with others.

image:
file: .gitpod.Dockerfile

tasks:
- init: |
pyenv install 3.10.6
pyenv shell 3.10.6
poetry install
make tests

0 comments on commit 476f2dd

Please sign in to comment.