Skip to content

Commit

Permalink
[script.module.oauthlib] 3.2.2 (#2544)
Browse files Browse the repository at this point in the history
  • Loading branch information
L2501 authored Dec 3, 2023
1 parent f0be59b commit c2d0a1d
Show file tree
Hide file tree
Showing 71 changed files with 1,428 additions and 1,287 deletions.
File renamed without changes.
131 changes: 0 additions & 131 deletions script.module.oauthlib/README.rst

This file was deleted.

37 changes: 18 additions & 19 deletions script.module.oauthlib/addon.xml
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.oauthlib" name="oauthlib" version="3.1.0+matrix.3" provider-name="Idan Gazit">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.blinker" version="1.4.0+matrix.1"/>
<import addon="script.module.pyjwt" version="1.7.1+matrix.1"/>
</requires>
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en_GB">A generic, spec-compliant, thorough implementation of the OAuth request-signing logic</summary>
<description lang="en_GB">A generic, spec-compliant, thorough implementation of the OAuth request-signing logic</description>
<disclaimer lang="en_GB">A generic, spec-compliant, thorough implementation of the OAuth request-signing logic</disclaimer>
<license>OAuthLib is yours to use and abuse according to the terms of the BSD license. Check the LICENSE file for full details</license>
<website>https://pypi.python.org/pypi/oauthlib</website>
<source>https://pypi.python.org/pypi/oauthlib</source>
<assets>
<icon>icon.png</icon>
</assets>
</extension>
<addon id="script.module.oauthlib" name="oauthlib" version="3.2.2" provider-name="The OAuthlib Community">
<requires>
<import addon="xbmc.python" version="3.0.0" />
<import addon="script.module.blinker" version="1.7.0" />
<import addon="script.module.pyjwt" version="2.8.0" />
</requires>
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">A generic, spec-compliant, thorough implementation of the OAuth request-signing logic</summary>
<description lang="en_GB">A generic, spec-compliant, thorough implementation of the OAuth request-signing logic</description>
<license>BSD</license>
<platform>all</platform>
<website>https://github.com/oauthlib/oauthlib</website>
<source>https://github.com/oauthlib/oauthlib</source>
<assets>
<icon>resources/icon.png</icon>
</assets>
</extension>
</addon>
2 changes: 1 addition & 1 deletion script.module.oauthlib/lib/oauthlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from logging import NullHandler

__author__ = 'The OAuthlib Community'
__version__ = '3.1.0'
__version__ = '3.2.2'

logging.getLogger('oauthlib').addHandler(NullHandler())

Expand Down
Loading

0 comments on commit c2d0a1d

Please sign in to comment.