Fix dependencies for Python3 version 3.13 #64
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
User description
I tried to follow the installation instructions but kept getting errors.
I updated the dependencies to get things working.
I updated duckdb to just 1.0.0 because I figured that it would be safer to do the minimal update possible to get things working.
I was able to get a successful solution after these upgrades using:
python -m alpha_codium.solve_problem
--dataset_name /Users/mikegehard/workspace/aiAssistedAgile/AlphaCodium/valid_and_test_processed \ --split_name test
--problem_number 0
PR Type
enhancement, documentation
Description
requirements.txt
to ensure compatibility with Python 3.13:fastapi
updated to version 0.115.5.tiktoken
updated to version 0.8.0.duckdb
updated to version 1.0.0.Changes walkthrough 📝
README.md
Add pre-requisites section to installation instructions
README.md
requirements.txt
Update dependencies for compatibility with Python 3.13
requirements.txt
fastapi
version from 0.99.0 to 0.115.5.tiktoken
version from 0.5.2 to 0.8.0.duckdb
version from 0.9.2 to 1.0.0.