You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

python-swiftclient

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

python-swiftclient - pypi Package Compare versions

Comparing version
4.8.0
to
4.9.0
+7
releasenotes/notes/4_9_0_release-b26426108163280d.yaml
---
fixes:
- |
The ``timeout`` parameter is now included when creating Keystoneauth Sessions.
- |
Various other minor improvements.
===========================
2025.2 Series Release Notes
===========================
.. release-notes::
:branch: stable/2025.2
+5
-4

@@ -13,5 +13,2 @@ - job:

- opendev.org/openstack/python-swiftclient
vars:
# New tox keeps breaking things as of 2023-01
ensure_tox_version: '<4'

@@ -44,6 +41,10 @@ - job:

jobs:
- openstack-tox-py37
- openstack-tox-py37:
nodeset: ubuntu-jammy
vars:
python_use_pyenv: True
- openstack-tox-py38
- openstack-tox-py39
- openstack-tox-py311
- openstack-tox-py312
check:

@@ -50,0 +51,0 @@ jobs:

@@ -37,2 +37,3 @@ Aarni Koskela (akx@iki.fi)

David Shrewsbury (shrewsbury.dave@gmail.com)
David Svenson (davidsvenson@outlook.com)
Davide Guerri (davide.guerri@hp.com)

@@ -39,0 +40,0 @@ Dean Troyer (dtroyer@gmail.com)

Metadata-Version: 2.1
Name: python-swiftclient
Version: 4.8.0
Version: 4.9.0
Summary: OpenStack Object Storage API Client Library

@@ -5,0 +5,0 @@ Home-page: https://docs.openstack.org/python-swiftclient/latest/

@@ -1,1 +0,1 @@

{"git_version": "8486005", "is_release": true}
{"git_version": "d520b2b", "is_release": true}
Metadata-Version: 2.1
Name: python-swiftclient
Version: 4.8.0
Version: 4.9.0
Summary: OpenStack Object Storage API Client Library

@@ -5,0 +5,0 @@ Home-page: https://docs.openstack.org/python-swiftclient/latest/

@@ -65,2 +65,3 @@ .coveragerc

releasenotes/notes/4_8_0_release-41ba0852981191c3.yaml
releasenotes/notes/4_9_0_release-b26426108163280d.yaml
releasenotes/source/2023.1.rst

@@ -71,2 +72,3 @@ releasenotes/source/2023.2.rst

releasenotes/source/2025.1.rst
releasenotes/source/2025.2.rst
releasenotes/source/conf.py

@@ -73,0 +75,0 @@ releasenotes/source/current.rst

@@ -6,2 +6,2 @@ ===========================

.. release-notes::
:branch: stable/2024.1
:branch: unmaintained/2024.1

@@ -9,2 +9,3 @@ ============================

current
2025.2
2025.1

@@ -11,0 +12,0 @@ 2024.2

@@ -40,2 +40,3 @@ # Copyright 2016 OpenStack Foundation

import datetime
from datetime import timezone
import json

@@ -56,18 +57,2 @@ import time

# stupid stdlib...
class _UTC(datetime.tzinfo):
def utcoffset(self, dt):
return datetime.timedelta(0)
def tzname(self, dt):
return "UTC"
def dst(self, dt):
return datetime.timedelta(0)
UTC = _UTC()
del _UTC
class ServiceCatalogV1:

@@ -176,7 +161,7 @@ def __init__(self, auth_url, storage_url, account):

return None
return datetime.datetime.fromtimestamp(self._expires, UTC)
return datetime.datetime.fromtimestamp(self._expires, timezone.utc)
@property
def issued(self):
return datetime.datetime.fromtimestamp(self._issued, UTC)
return datetime.datetime.fromtimestamp(self._issued, timezone.utc)

@@ -183,0 +168,0 @@ @property

@@ -27,3 +27,3 @@ [tox]

[testenv:{py36,py37,py38}]
[testenv:{py37,py38,py39}]
# Drop the use of constraints; most dependencies have dropped support for

@@ -30,0 +30,0 @@ # these versions already, and have updated their metadata to reflect that

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display