chore: dropping py37 support in favor of py312 #339
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.
Hello! In a nutshell:
I recently attempted to build irrexplorer on py312, and had issues due frozenlist==1.3.3 not be supported/build for py312.
They started to support py312 on fronzenlist==1.4.0 onwards, due that, the proposed solution is to drop py37 support that's already end of life since 2023-06-27 in favor of py312.
To resolve this issue and enable support for py312, I propose the following changes:
Drop support for py37 in favor of py312. This will allow us to use the latest version of Python, and frozenlist compatibility will no longer be an issue.
Update the CircleCI pipeline configuration to reflect the changes in supported Python versions. However, I don't have access to the CircleCI pipeline, so this needs to be double-checked and updated accordingly.
I've included updated frontend/yarn.lock and poetry.lock files to include the necessary dependencies generated based in the new project requirements. I noticed that in the file history, these files have been updated both manually and automatically. Please ensure that the appropriate method is used to update these files.
Update the README file to reflect the changes in supported Python versions, updating supported Python version from 3.8 onwards.
Update the pyproject.toml file to specify the new Python version requirements.
From poetry:
Thanks for this amazing project!