Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

xeauth

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xeauth - npm Package Compare versions

Comparing version
0.1.20
to
0.1.21
+2
-2
PKG-INFO
Metadata-Version: 2.1
Name: xeauth
Version: 0.1.20
Version: 0.1.21
Summary: Top-level package for xeauth.

@@ -21,3 +21,3 @@ Home-page: https://github.com/jmosbacher/xeauth

Requires-Dist: click
Requires-Dist: httpx (>=0.19,<0.20)
Requires-Dist: httpx (>=0.19,<0.23)
Requires-Dist: param (>=1.12.0,<2.0.0)

@@ -24,0 +24,0 @@ Description-Content-Type: text/x-rst

[tool]
[tool.poetry]
name = "xeauth"
version = "0.1.20"
version = "0.1.21"
homepage = "https://github.com/jmosbacher/xeauth"

@@ -28,3 +28,3 @@ description = "Top-level package for xeauth."

Authlib = "^1.0.0"
httpx = "^0.19"
httpx = ">=0.19,<0.23"
appdirs = "^1.4.4"

@@ -31,0 +31,0 @@ param = "^1.12.0"

@@ -14,3 +14,3 @@ # -*- coding: utf-8 -*-

'click',
'httpx>=0.19,<0.20',
'httpx>=0.19,<0.23',
'param>=1.12.0,<2.0.0']

@@ -25,3 +25,3 @@

'name': 'xeauth',
'version': '0.1.20',
'version': '0.1.21',
'description': 'Top-level package for xeauth.',

@@ -28,0 +28,0 @@ 'long_description': '======\nxeauth\n======\n\n\n.. image:: https://img.shields.io/pypi/v/xeauth.svg\n :target: https://pypi.python.org/pypi/xeauth\n\n.. image:: https://img.shields.io/travis/jmosbacher/xeauth.svg\n :target: https://travis-ci.com/jmosbacher/xeauth\n\n.. image:: https://readthedocs.org/projects/xeauth/badge/?version=latest\n :target: https://xeauth.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n\n\n\nAuthentication client for the Xenon edark matter experiment.\n\n\n* Free software: MIT\n* Documentation: https://xeauth.readthedocs.io.\n\n\nFeatures\n--------\n\n* TODO\n\nCredits\n-------\n\nThis package was created with Cookiecutter_ and the `briggySmalls/cookiecutter-pypackage`_ project template.\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`briggySmalls/cookiecutter-pypackage`: https://github.com/briggySmalls/cookiecutter-pypackage\n',

@@ -8,2 +8,2 @@ """Top-level package for xeauth."""

__email__ = 'joe.mosbacher@gmail.com'
__version__ = '0.1.20'
__version__ = '0.1.21'

@@ -15,4 +15,4 @@ import os

from .token import XeToken
from .device_auth_flow import DeviceAuthFlow
logger = logging.getLogger(__name__)

@@ -36,3 +36,3 @@

flow = param.ClassSelector()
flow = param.ClassSelector(default=DeviceAuthFlow, class_=DeviceAuthFlow, is_instance=False)

@@ -39,0 +39,0 @@ token = param.ClassSelector(XeToken, default=None)