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

audfactory

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

audfactory - pypi Package Compare versions

Comparing version
1.0.11
to
1.0.12
+9
-1
audfactory.egg-info/PKG-INFO
Metadata-Version: 1.2
Name: audfactory
Version: 1.0.11
Version: 1.0.12
Summary: Communicate with Artifactory

@@ -56,2 +56,10 @@ Home-page: https://github.com/audeering/audfactory/

Version 1.0.12 (2023-02-17)
---------------------------
* Fixed: ``audfactory.versions()``
for server with no access rights
and ``dohq-artifactory>=0.8``
Version 1.0.11 (2023-02-13)

@@ -58,0 +66,0 @@ ---------------------------

@@ -12,2 +12,3 @@ import errno

)
import dohq_artifactory
import requests

@@ -435,3 +436,10 @@

versions = [v for v in versions if audeer.is_semantic_version(v)]
except (FileNotFoundError, RuntimeError, requests.exceptions.HTTPError):
except (
FileNotFoundError,
RuntimeError,
# no access rights to server with dohq-artifactory<0.8
requests.exceptions.HTTPError,
# no access rights to server with dohq-artifactory>=0.8
dohq_artifactory.exception.ArtifactoryException,
):
versions = []

@@ -438,0 +446,0 @@ return audeer.sort_versions(versions)

@@ -10,2 +10,10 @@ Changelog

Version 1.0.12 (2023-02-17)
---------------------------
* Fixed: ``audfactory.versions()``
for server with no access rights
and ``dohq-artifactory>=0.8``
Version 1.0.11 (2023-02-13)

@@ -12,0 +20,0 @@ ---------------------------

Metadata-Version: 1.2
Name: audfactory
Version: 1.0.11
Version: 1.0.12
Summary: Communicate with Artifactory

@@ -56,2 +56,10 @@ Home-page: https://github.com/audeering/audfactory/

Version 1.0.12 (2023-02-17)
---------------------------
* Fixed: ``audfactory.versions()``
for server with no access rights
and ``dohq-artifactory>=0.8``
Version 1.0.11 (2023-02-13)

@@ -58,0 +66,0 @@ ---------------------------