Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Shell] CC-1646: Upgrade Python support to 3.13 #78

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion compiled_starters/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Time to move on to the next stage!

Note: This section is for stages 2 and beyond.

1. Ensure you have `python (3.11)` installed locally
1. Ensure you have `python (3.13)` installed locally
1. Run `./your_program.sh` to run your program, which is implemented in
`app/main.py`.
1. Commit your changes and run `git push origin master` to submit your solution
Expand Down
4 changes: 2 additions & 2 deletions compiled_starters/python/codecrafters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ debug: false
# Use this to change the Python version used to run your code
# on Codecrafters.
#
# Available versions: python-3.12
language_pack: python-3.12
# Available versions: python-3.13
language_pack: python-3.13
20 changes: 20 additions & 0 deletions dockerfiles/python-3.13.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
FROM python:3.13-alpine

# We need to install Go to build the custom executable.
RUN apk add --no-cache "go>=1.20"

RUN pip install --no-cache-dir "pipenv>=2024.4.0"

COPY Pipfile /app/Pipfile
COPY Pipfile.lock /app/Pipfile.lock

WORKDIR /app

ENV WORKON_HOME=/venvs

RUN pipenv install

# Force environment creation
RUN pipenv run python3 -c "1+1"

ENV CODECRAFTERS_DEPENDENCY_FILE_PATHS="Pipfile,Pipfile.lock"
2 changes: 1 addition & 1 deletion solutions/python/01-oo8/code/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Time to move on to the next stage!

Note: This section is for stages 2 and beyond.

1. Ensure you have `python (3.11)` installed locally
1. Ensure you have `python (3.13)` installed locally
1. Run `./your_program.sh` to run your program, which is implemented in
`app/main.py`.
1. Commit your changes and run `git push origin master` to submit your solution
Expand Down
4 changes: 2 additions & 2 deletions solutions/python/01-oo8/code/codecrafters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ debug: false
# Use this to change the Python version used to run your code
# on Codecrafters.
#
# Available versions: python-3.12
language_pack: python-3.12
# Available versions: python-3.13
language_pack: python-3.13
2 changes: 1 addition & 1 deletion solutions/python/02-cz2/code/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Time to move on to the next stage!

Note: This section is for stages 2 and beyond.

1. Ensure you have `python (3.11)` installed locally
1. Ensure you have `python (3.13)` installed locally
1. Run `./your_program.sh` to run your program, which is implemented in
`app/main.py`.
1. Commit your changes and run `git push origin master` to submit your solution
Expand Down
4 changes: 2 additions & 2 deletions solutions/python/02-cz2/code/codecrafters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ debug: false
# Use this to change the Python version used to run your code
# on Codecrafters.
#
# Available versions: python-3.12
language_pack: python-3.12
# Available versions: python-3.13
language_pack: python-3.13
2 changes: 1 addition & 1 deletion starter_templates/python/config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
attributes:
required_executable: python (3.11)
required_executable: python (3.13)
user_editable_file: app/main.py
Loading