Skip to content

Commit da90f11

Browse files
committed
update code using tox -e generate
1 parent b59f385 commit da90f11

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

instrumentation/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
| [opentelemetry-instrumentation-jinja2](./opentelemetry-instrumentation-jinja2) | jinja2~=2.7 |
2020
| [opentelemetry-instrumentation-logging](./opentelemetry-instrumentation-logging) | logging |
2121
| [opentelemetry-instrumentation-mysql](./opentelemetry-instrumentation-mysql) | mysql-connector-python ~= 8.0 |
22+
| [opentelemetry-instrumentation-pika](./opentelemetry-instrumentation-pika) | pika >= 1.1.0 |
2223
| [opentelemetry-instrumentation-psycopg2](./opentelemetry-instrumentation-psycopg2) | psycopg2 >= 2.7.3.1 |
2324
| [opentelemetry-instrumentation-pymemcache](./opentelemetry-instrumentation-pymemcache) | pymemcache ~= 1.3 |
2425
| [opentelemetry-instrumentation-pymongo](./opentelemetry-instrumentation-pymongo) | pymongo ~= 3.1 |

instrumentation/opentelemetry-instrumentation-pika/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@
4141
VERSION_FILENAME = os.path.join(
4242
BASE_DIR, "src", "opentelemetry", "instrumentation", "pika", "version.py"
4343
)
44-
with open(VERSION_FILENAME) as f:
44+
with open(VERSION_FILENAME, encoding="utf-8") as f:
4545
exec(f.read(), PACKAGE_INFO)
4646

4747
PACKAGE_FILENAME = os.path.join(
4848
BASE_DIR, "src", "opentelemetry", "instrumentation", "pika", "package.py"
4949
)
50-
with open(PACKAGE_FILENAME) as f:
50+
with open(PACKAGE_FILENAME, encoding="utf-8") as f:
5151
exec(f.read(), PACKAGE_INFO)
5252

5353
# Mark any instruments/runtime dependencies as test dependencies as well.

0 commit comments

Comments
 (0)