-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup EOL Python versions to fix build (#30)
* 💚 drop 2.7, 3.5, 3.6 as ubuntu-latest does not support them anymore and they are EOL update setup.py accordingly * ⚰️ cleanup imports after commit eb0cc7d * 🎨 reformat logger line for line length and rename path variable to avoid shadowing * addendum to 1cc3e04 * 💚 Fix build.yml to the with python 3.10 instead of 3.1 * 👷 update actions versions to most recent major versions * because node version in setup-python was deprecated
- Loading branch information
Showing
3 changed files
with
17 additions
and
18 deletions.
There are no files selected for viewing
This file contains 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 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 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 |
---|---|---|
|
@@ -10,13 +10,13 @@ def _get_long_description(): | |
|
||
setup( | ||
name='podcats', | ||
version='0.6.3', | ||
version='0.7.0', | ||
description=('An application that generates RSS feeds for podcast ' | ||
'episodes from local audio files and, optionally, ' | ||
'exposes both via a built-in web server'), | ||
long_description=_get_long_description(), | ||
url='https://github.com/jakubroztocil/podcats', | ||
download_url='https://github.com/jakubroztocil/podcats', | ||
url='https://github.com/jkbrzt/podcats', | ||
download_url='https://github.com/jkbrzt/podcats', | ||
author='Jakub Roztocil', | ||
author_email='[email protected]', | ||
license='BSD', | ||
|
@@ -37,8 +37,12 @@ def _get_long_description(): | |
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Environment :: Console', | ||
'Intended Audience :: End Users/Desktop', | ||
'License :: OSI Approved :: BSD License', | ||
|