File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed
Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 55setup (
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" ,
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)
Original file line number Diff line number Diff line change 1313from jeepney import DBusAddress , new_method_call
1414from jeepney .io .blocking import open_dbus_connection
1515
16+
1617logging .getLogger ("lyriq.lyriq" ).setLevel (logging .CRITICAL )
1718
19+
1820class SpotifyCLIException (Exception ):
1921 """An exception wrapper purely to handle known exceptions nicely"""
2022 pass
You can’t perform that action at this time.
0 commit comments