Update Python version requirement in README - #377
Open
TDK-99 wants to merge 1 commit into
Open
Conversation
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.
In the issue, I find a problem with the dependency with NumPy; the project works only on 3.10 to 3.12, so it's better to write clearly on 3.10 to 3.12.
The issue im reffered :
Currently using on a project a python 3.14.6
i try to install the library from your standard pip:
pip install -U python-jobspyand this the error that appear:
for try to resolve i switch to python 3.12 with a venv and use this command with uv:
uv pip install -U python-jobspythat give me this:
as you can see jobspy get installed and if i run this:
python -c "from jobspy import scrape_jobs; print('ok')"
it print ok so its install
i tried with and other version like the 3.13.14 and i got the main error on the top.
So i deep in and the main problem is that lib have depency on numpy= 1.26.3, now when im writing is 2.5.1,
as you can see on the lib version https://pypi.org/project/numpy/1.26.3/ the version of python for get thing work is max 3.12 that checks out the analyis did before.
So this project work only on 3.9( it refer to numpy, 3,10 for other depency tha idk) to 3.12 and only not up to 3.10.
Thanks for all the work i hope this get appreciated
Closes - #376