mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-29 08:40:12 +01:00
2021-12-17 Fred Gleason <fredg@paravelsystems.com>
* Rearranged the ordering of the module imports in 'apis/rivwebpyapi/api/rivwebpyapi.py' to conform to recommendations in Python PEP 8. * Added a 'requests' dependency to the PyPI package requirements for the 'rivwebpyapi' API. * Incremented the version of the 'rivwebpyapi' PyPI package to 4.0.0b8. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -23,6 +23,7 @@
|
|||||||
*.xsl
|
*.xsl
|
||||||
*.tar.gz
|
*.tar.gz
|
||||||
*.tar.xz
|
*.tar.xz
|
||||||
|
*.whl
|
||||||
*.zip
|
*.zip
|
||||||
.AppleDouble
|
.AppleDouble
|
||||||
.deps
|
.deps
|
||||||
|
|||||||
@@ -22810,3 +22810,11 @@
|
|||||||
'apis/rivwebpyapi/Makefile.am'.
|
'apis/rivwebpyapi/Makefile.am'.
|
||||||
2021-12-16 Fred Gleason <fredg@paravelsystems.com>
|
2021-12-16 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Consolidated all canonical version declarations in 'versions/'.
|
* Consolidated all canonical version declarations in 'versions/'.
|
||||||
|
2021-12-17 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Rearranged the ordering of the module imports in
|
||||||
|
'apis/rivwebpyapi/api/rivwebpyapi.py' to conform to recommendations
|
||||||
|
in Python PEP 8.
|
||||||
|
* Added a 'requests' dependency to the PyPI package requirements
|
||||||
|
for the 'rivwebpyapi' API.
|
||||||
|
* Incremented the version of the 'rivwebpyapi' PyPI package to
|
||||||
|
4.0.0b8.
|
||||||
|
|||||||
@@ -18,15 +18,15 @@
|
|||||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
#
|
#
|
||||||
|
|
||||||
import sys
|
|
||||||
|
|
||||||
import datetime
|
import datetime
|
||||||
|
import sys
|
||||||
from datetime import timedelta
|
from datetime import timedelta
|
||||||
import requests
|
|
||||||
from urllib.parse import urlparse
|
from urllib.parse import urlparse
|
||||||
from xml.sax.handler import ContentHandler
|
from xml.sax.handler import ContentHandler
|
||||||
import xml.sax
|
import xml.sax
|
||||||
|
|
||||||
|
import requests
|
||||||
|
|
||||||
#
|
#
|
||||||
# Audio Formats
|
# Audio Formats
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -19,6 +19,8 @@ package_dir=
|
|||||||
=src
|
=src
|
||||||
packages=find:
|
packages=find:
|
||||||
python_requires = >=3.6
|
python_requires = >=3.6
|
||||||
|
install_requires =
|
||||||
|
requests >= 2.14.2
|
||||||
|
|
||||||
[options.packages.find]
|
[options.packages.find]
|
||||||
where=src
|
where=src
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
4.0.0b6
|
4.0.0b8
|
||||||
Reference in New Issue
Block a user