-
Notifications
You must be signed in to change notification settings - Fork 33
Fixes for linux fedora python 3.12 #63
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
Open
Dollique
wants to merge
6
commits into
mathewthe2:main
Choose a base branch
from
Dollique:fixes-for-linux-fedora-python-3-12
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
1057301
updated python version to 3.12 and added alternative way to install o…
Dollique ff2e673
make pynput import optional, which solves an issue on Linux using way…
Dollique 785e12e
replace fuzzywuzzy with the new repo thefuzz
Dollique 6247381
update all dependencies to work on python 3.12 and added some missing…
Dollique 37a6007
replace fallback chrome with default (tested on a linux machine witho…
Dollique 2d75f89
removed unneccessary dependencies and re-added accidentally removed ones
Dollique File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,16 +1,14 @@ | ||
| bottle==0.12.25 | ||
| bottle==0.13.4 | ||
| bottle-websocket==0.2.9 | ||
| certifi==2020.11.8 | ||
| cffi==1.14.4 | ||
| Eel==0.16.0 | ||
| cffi==2.0.0 | ||
| eel==0.18.2 | ||
| future==0.18.2 | ||
| fuzzywuzzy==0.18.0 | ||
| idna==3.4 | ||
| numpy==1.26.0 | ||
| opencv-python==4.8.0.76 | ||
| parse==1.19.0 | ||
| Pillow==10.0.1 | ||
| psutil==5.9.5 | ||
| opencv-python==4.12.0.88 | ||
| parse==1.20.2 | ||
| Pillow==10.4.0 | ||
| psutil==7.0.0 | ||
| pycparser==2.21 | ||
| pydub==0.25.1 | ||
| pyinstaller==5.13.2 | ||
|
|
@@ -22,17 +20,17 @@ pyparsing==2.4.7 | |
| pyperclip==1.8.2 | ||
| pytesseract==0.3.10 | ||
| python-xlib==0.29 | ||
| python-Levenshtein==0.12.2 | ||
| pywin32-ctypes==0.2.0 | ||
| PyYAML==6.0.1 | ||
| requests==2.31.0 | ||
| requests==2.32.5 | ||
| six==1.16.0 | ||
| thefuzz==0.22.1 | ||
| tk==0.1.0 | ||
| transformers==4.27.4 | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The dependency |
||
| translators==5.8.3 | ||
| urllib3==1.26.2 | ||
| translators==6.0.1 | ||
| urllib3==2.5.0 | ||
| whichcraft==0.6.1 | ||
| wexpect==4.0.0; sys_platform == 'win32' | ||
| wurlitzer>=3.0.2,<4.0.0; sys_platform == 'darwin' | ||
| xkbcommon==1.5.1 | ||
| zope.event==5.0 | ||
| zope.interface==6.0 | ||
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The dependency
numpythrows an error for me. Is this needed for win/mac or other distros?