Update Python version requirement to 3.11#56
Merged
lematt1991 merged 3 commits intofacebookresearch:mainfrom Jan 5, 2026
Merged
Update Python version requirement to 3.11#56lematt1991 merged 3 commits intofacebookresearch:mainfrom
lematt1991 merged 3 commits intofacebookresearch:mainfrom
Conversation
This change resolves an issue with running the project using `uv` for a virtual environment.
```
uv sync
Updated https://github.com/facebookresearch/perception_models (e72b6810b1133e1c879f2cc965d276eb73803f1f)
Updated https://github.com/facebookresearch/dacvae.git (414c20785fc3a28373073ea8ef7a1316eeeaca6e)
Updated https://github.com/facebookresearch/ImageBind.git (53680b02d7e37b19b124fa37bae4b6c98c38f5be)
Updated https://github.com/facebookresearch/pytorchvideo.git (6cdc929315aab1b5674b6dcf73b16ec99147735f)
× No solution found when resolving dependencies:
╰─▶ Because the requested Python version (>=3.10) does not satisfy Python>=3.11 and perception-models==1.0.0 depends
on Python>=3.11, we can conclude that perception-models==1.0.0 cannot be used.
And because only perception-models==1.0.0 is available and your project depends on perception-models, we can
conclude that your project's requirements are unsatisfiable.
hint: The `requires-python` value (>=3.10) includes Python versions that are not supported by your dependencies
(e.g., perception-models==1.0.0 only supports >=3.11). Consider using a more restrictive `requires-python` value
(like >=3.11).
```
Contributor
|
Can you also update the README to reflect the change. It currently says python 3.10 under requirements section |
Update minimum Python version from 3.10 to 3.11 in: - README.md requirements section - pyproject.toml requires-python - pyproject.toml ruff target-version
Update Python version requirement to 3.11
Contributor
Author
|
Hi @lematt1991 , this is done - I had Claude check for any other spots and it found the ruff version setting in |
Contributor
|
Nice catch! Thanks @forensicmike! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This change resolves an issue with running the project using
uvfor a virtual environment.