Skip to content

Commit 1c70035

Browse files
Releasing version 2.118.2
1 parent 8aeafdf commit 1c70035

File tree

7 files changed

+11
-183
lines changed

7 files changed

+11
-183
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ Change Log
33
All notable changes to this project will be documented in this file.
44

55
The format is based on `Keep a Changelog <http://keepachangelog.com/>`_.
6+
====================
7+
2.118.2 - 2024-01-11
8+
====================
9+
10+
Fixed
11+
-----
12+
* Removed dependency on python-pkcs11
13+
614
====================
715
2.118.1 - 2024-01-09
816
====================

examples/yubikey_example.py

Lines changed: 0 additions & 34 deletions
This file was deleted.

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@ vcrpy==2.0.1
1818
wheel<=0.39.0
1919
circuitbreaker>=1.3.1,<2.0.0
2020
docutils<0.18
21-
Jinja2<3.1
22-
python-pkcs11==0.7.0 ; python_version >= "3.7" and platform_system != "Windows"
21+
Jinja2<3.1

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ def open_relative(*path):
3636
"pyOpenSSL>=17.5.0,<24.0.0",
3737
"python-dateutil>=2.5.3,<3.0.0",
3838
"pytz>=2016.10",
39-
"circuitbreaker>=1.3.1,< 2.0.0",
40-
'python-pkcs11==0.7.0 ; python_version >= "3.7" and platform_system != "Windows"'
39+
"circuitbreaker>=1.3.1,< 2.0.0"
4140
]
4241

4342
setup(

src/oci/auth/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,3 @@
99
from . import session_key_supplier # noqa: F401
1010
from . import signers # noqa: F401
1111
from . import rpt_path_providers # noqa: F401
12-
try:
13-
from .yubikey_signer import YubikeyRequestSigner, Yubikey # noqa: F401
14-
except ModuleNotFoundError:
15-
pass

src/oci/auth/signers/yubikey_signer.py

Lines changed: 0 additions & 140 deletions
This file was deleted.

src/oci/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
# 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.
44

5-
__version__ = "2.118.1"
5+
__version__ = "2.118.2"

0 commit comments

Comments
 (0)