Skip to content

Commit

Permalink
Require Python 3.11+ (#784)
Browse files Browse the repository at this point in the history
* Run tests with Python 3.11

* Update setup.py
  • Loading branch information
emontnemery authored Jan 16, 2024
1 parent 2c0a6a3 commit 0a1dc7e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:

steps:
- uses: actions/[email protected]
- name: Set up Python 3.8
- name: Set up Python 3.11
uses: actions/[email protected]
with:
python-version: 3.8
python-version: 3.11
- name: Install dependencies
run: |
pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pychromecast |Build Status|
.. |Build Status| image:: https://travis-ci.org/balloob/pychromecast.svg?branch=master
:target: https://travis-ci.org/balloob/pychromecast

Library for Python 3.6+ to communicate with the Google Chromecast. It
Library for Python 3.11+ to communicate with the Google Chromecast. It
currently supports:

- Auto discovering connected Chromecasts on the network
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
include_package_data=True,
platforms="any",
install_requires=list(val.strip() for val in open("requirements.txt")),
python_requires=">=3.11",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 0a1dc7e

Please sign in to comment.