Skip to content

Commit

Permalink
Bump dependecies and raise minimum python to 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-mil committed Nov 12, 2023
1 parent 29eea15 commit a883658
Show file tree
Hide file tree
Showing 4 changed files with 207 additions and 237 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pipx install bing-rewards

## **Requirements**

- At least Python 3.8
- At least Python 3.10

- [pynput](https://github.com/moses-palmer/pynput) package is used to control keypresses and type Bing search URLS.
WARNING: This script *will* take control away from the keyboard while running. **Pynput** performs key presses. i.e., it does not operate headless or in the background.
Expand Down
2 changes: 1 addition & 1 deletion bing_rewards/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def check_python_version():
"""
Ensure the correct version of Python is being used.
"""
minimum_version = (3, 6)
minimum_version = (3, 10)
assert (
sys.version_info >= minimum_version
), "Only Python {}.{} and above is supported.".format(*minimum_version)
Expand Down
Loading

0 comments on commit a883658

Please sign in to comment.