Skip to content

Commit a088ec1

Browse files
chore(deps): bump the production-dependencies group with 2 updates (#3108)
* chore(deps): bump the production-dependencies group with 2 updates Bumps the production-dependencies group with 2 updates: [setuptools](https://github.com/pypa/setuptools) and [oracledb](https://github.com/oracle/python-oracledb). Updates `setuptools` from 75.8.2 to 76.0.0 - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](pypa/setuptools@v75.8.2...v76.0.0) Updates `oracledb` from 2.5.1 to 3.0.0 - [Release notes](https://github.com/oracle/python-oracledb/releases) - [Commits](oracle/python-oracledb@v2.5.1...v3.0.0) --- updated-dependencies: - dependency-name: setuptools dependency-type: direct:production update-type: version-update:semver-major dependency-group: production-dependencies - dependency-name: oracledb dependency-type: direct:production update-type: version-update:semver-major dependency-group: production-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * oracle typing --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Anton Kukushkin <[email protected]>
1 parent 9806c17 commit a088ec1

File tree

3 files changed

+39
-39
lines changed

3 files changed

+39
-39
lines changed

awswrangler/oracle.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ def connect(
196196
dsn=connection_dsn,
197197
)
198198
# oracledb.connect does not have a call_timeout attribute, it has to be set separatly
199-
oracle_connection.call_timeout = call_timeout
200-
return oracle_connection # type: ignore[no-any-return]
199+
oracle_connection.call_timeout = call_timeout # type: ignore[assignment]
200+
return oracle_connection
201201

202202

203203
@overload

poetry.lock

+36-36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ redshift-connector = { version = "^2.0.0", optional = true }
5151
pymysql = { version = "^1.0.0", optional = true }
5252
pg8000 = { version = "^1.29.0", optional = true }
5353
pyodbc = { version = ">=4,<6", optional = true }
54-
oracledb = { version = ">=1,<3", optional = true }
54+
oracledb = { version = ">=1,<4", optional = true }
5555

5656
# Graph
5757
gremlinpython = { version = "^3.7.1", optional = true }

0 commit comments

Comments
 (0)