opentelemetry-instrumentation-cassandra 0.46b0__tar.gz → 0.48b0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -58,3 +58,6 @@ _build/
58
58
  # mypy
59
59
  .mypy_cache/
60
60
  target
61
+
62
+ # Benchmark result files
63
+ *-benchmark.json
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: opentelemetry-instrumentation-cassandra
3
- Version: 0.46b0
3
+ Version: 0.48b0
4
4
  Summary: OpenTelemetry Cassandra instrumentation
5
5
  Project-URL: Homepage, https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-cassandra
6
6
  Author-email: OpenTelemetry Authors <cncf-opentelemetry-contributors@lists.cncf.io>
@@ -15,10 +15,11 @@ Classifier: Programming Language :: Python :: 3.8
15
15
  Classifier: Programming Language :: Python :: 3.9
16
16
  Classifier: Programming Language :: Python :: 3.10
17
17
  Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
18
19
  Requires-Python: >=3.8
19
20
  Requires-Dist: opentelemetry-api~=1.12
20
- Requires-Dist: opentelemetry-instrumentation==0.46b0
21
- Requires-Dist: opentelemetry-semantic-conventions==0.46b0
21
+ Requires-Dist: opentelemetry-instrumentation==0.48b0
22
+ Requires-Dist: opentelemetry-semantic-conventions==0.48b0
22
23
  Requires-Dist: wrapt<2.0.0,>=1.0.0
23
24
  Provides-Extra: instruments
24
25
  Requires-Dist: cassandra-driver~=3.25; extra == 'instruments'
@@ -22,11 +22,12 @@ classifiers = [
22
22
  "Programming Language :: Python :: 3.9",
23
23
  "Programming Language :: Python :: 3.10",
24
24
  "Programming Language :: Python :: 3.11",
25
+ "Programming Language :: Python :: 3.12",
25
26
  ]
26
27
  dependencies = [
27
28
  "opentelemetry-api ~= 1.12",
28
- "opentelemetry-instrumentation == 0.46b0",
29
- "opentelemetry-semantic-conventions == 0.46b0",
29
+ "opentelemetry-instrumentation == 0.48b0",
30
+ "opentelemetry-semantic-conventions == 0.48b0",
30
31
  "wrapt >= 1.0.0, < 2.0.0",
31
32
  ]
32
33
 
@@ -12,4 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- __version__ = "0.46b0"
15
+ __version__ = "0.48b0"