Skip to content

Commit e806ab4

Browse files
committed
fixed formatting and switched python version to 3.12.7 (stable)
1 parent 805c180 commit e806ab4

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: setup-python
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: '3.14.1'
19+
python-version: '3.12.7'
2020
cache: 'pip'
2121
- name: install-requirements
2222
run: pip install -r requirements.txt

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: setup-python
1616
uses: actions/setup-python@v4
1717
with:
18-
python-version: '3.14.1'
18+
python-version: '3.12.7'
1919
cache: 'pip'
2020
- name: install-requirements
2121
run: pip install -r requirements.txt

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
setup(
66
name='spotify-cli-linux',
77
version=__version__,
8-
python_requires='>=3.6',
8+
python_requires='>=3.12.7',
99
description="a command line interface to Spotify on Linux",
1010
long_description=open('README.md').read(),
1111
long_description_content_type="text/markdown",
@@ -24,8 +24,7 @@
2424
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
2525
'Operating System :: POSIX :: Linux',
2626
'Programming Language :: Python',
27-
'Programming Language :: Python :: 3.6',
28-
'Programming Language :: Python :: 3.7',
27+
'Programming Language :: Python :: 3.12.7',
2928
'Topic :: Multimedia :: Sound/Audio'
3029
],
3130
)

spotifycli/spotifycli.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@
1313
from jeepney import DBusAddress, new_method_call
1414
from jeepney.io.blocking import open_dbus_connection
1515

16+
1617
logging.getLogger("lyriq.lyriq").setLevel(logging.CRITICAL)
1718

19+
1820
class SpotifyCLIException(Exception):
1921
"""An exception wrapper purely to handle known exceptions nicely"""
2022
pass

0 commit comments

Comments
 (0)