Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ Change Log
All notable changes to this project will be documented in this file.

The format is based on `Keep a Changelog <http://keepachangelog.com/>`_.
====================
2.118.2 - 2024-01-11
====================

Fixed
-----
* Removed dependency on python-pkcs11

====================
2.118.1 - 2024-01-09
====================
Expand Down
34 changes: 0 additions & 34 deletions examples/yubikey_example.py

This file was deleted.

3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@ vcrpy==2.0.1
wheel<=0.39.0
circuitbreaker>=1.3.1,<2.0.0
docutils<0.18
Jinja2<3.1
python-pkcs11==0.7.0 ; python_version >= "3.7" and platform_system != "Windows"
Jinja2<3.1
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ def open_relative(*path):
"pyOpenSSL>=17.5.0,<24.0.0",
"python-dateutil>=2.5.3,<3.0.0",
"pytz>=2016.10",
"circuitbreaker>=1.3.1,< 2.0.0",
'python-pkcs11==0.7.0 ; python_version >= "3.7" and platform_system != "Windows"'
"circuitbreaker>=1.3.1,< 2.0.0"
]

setup(
Expand Down
4 changes: 0 additions & 4 deletions src/oci/auth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,3 @@
from . import session_key_supplier # noqa: F401
from . import signers # noqa: F401
from . import rpt_path_providers # noqa: F401
try:
from .yubikey_signer import YubikeyRequestSigner, Yubikey # noqa: F401
except ModuleNotFoundError:
pass
140 changes: 0 additions & 140 deletions src/oci/auth/signers/yubikey_signer.py

This file was deleted.

2 changes: 1 addition & 1 deletion src/oci/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.

__version__ = "2.118.1"
__version__ = "2.118.2"