src-py-lib 0.2.0__tar.gz → 0.2.1__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.
Files changed (36) hide show
  1. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/PKG-INFO +4 -4
  2. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/pyproject.toml +5 -5
  3. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/uv.lock +5 -5
  4. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/.github/CODEOWNERS +0 -0
  5. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/.github/workflows/ci.yml +0 -0
  6. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/.github/workflows/release.yml +0 -0
  7. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/.github/workflows/validate.yml +0 -0
  8. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/.gitignore +0 -0
  9. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/.markdownlint-cli2.yaml +0 -0
  10. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/.python-version +0 -0
  11. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/AGENTS.md +0 -0
  12. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/LICENSE +0 -0
  13. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/README.md +0 -0
  14. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/SECURITY.md +0 -0
  15. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/renovate.json +0 -0
  16. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/__init__.py +0 -0
  17. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/clients/__init__.py +0 -0
  18. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/clients/github.py +0 -0
  19. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/clients/google_sheets.py +0 -0
  20. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/clients/graphql.py +0 -0
  21. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/clients/linear.py +0 -0
  22. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/clients/one_password.py +0 -0
  23. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/clients/slack.py +0 -0
  24. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/clients/sourcegraph.py +0 -0
  25. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/py.typed +0 -0
  26. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/utils/__init__.py +0 -0
  27. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/utils/config.py +0 -0
  28. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/utils/http.py +0 -0
  29. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/utils/json_cache.py +0 -0
  30. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/utils/json_types.py +0 -0
  31. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/utils/logging.py +0 -0
  32. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/utils/telemetry.py +0 -0
  33. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/src/src_py_lib/utils/tsv.py +0 -0
  34. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/tests/test_import.py +0 -0
  35. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/tests/test_logging_http_clients.py +0 -0
  36. {src_py_lib-0.2.0 → src_py_lib-0.2.1}/tests/test_tsv.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: src-py-lib
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Reusable libraries for Sourcegraph projects
5
5
  Project-URL: Homepage, https://github.com/sourcegraph/src-py-lib
6
6
  Project-URL: Issues, https://github.com/sourcegraph/src-py-lib/issues
@@ -17,12 +17,12 @@ Classifier: Programming Language :: Python :: 3
17
17
  Classifier: Typing :: Typed
18
18
  Requires-Python: >=3.11
19
19
  Requires-Dist: httpx<1,>=0.28.1
20
- Requires-Dist: opentelemetry-api<2,>=1.38.0
20
+ Requires-Dist: opentelemetry-api<2,>=1.42.1
21
21
  Requires-Dist: pydantic<3,>=2.13.4
22
22
  Requires-Dist: python-dotenv<2,>=1.2.2
23
23
  Provides-Extra: otel
24
- Requires-Dist: opentelemetry-exporter-otlp-proto-http<2,>=1.38.0; extra == 'otel'
25
- Requires-Dist: opentelemetry-sdk<2,>=1.38.0; extra == 'otel'
24
+ Requires-Dist: opentelemetry-exporter-otlp-proto-http<2,>=1.42.1; extra == 'otel'
25
+ Requires-Dist: opentelemetry-sdk<2,>=1.42.1; extra == 'otel'
26
26
  Description-Content-Type: text/markdown
27
27
 
28
28
  # src-py-lib
@@ -4,8 +4,8 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [dependency-groups]
6
6
  dev = [
7
- "opentelemetry-exporter-otlp-proto-http>=1.38.0,<2",
8
- "opentelemetry-sdk>=1.38.0,<2",
7
+ "opentelemetry-exporter-otlp-proto-http>=1.42.1,<2",
8
+ "opentelemetry-sdk>=1.42.1,<2",
9
9
  "pyright>=1.1.410",
10
10
  "ruff>=0.15.16",
11
11
  ]
@@ -32,7 +32,7 @@ classifiers = [
32
32
  ]
33
33
  dependencies = [
34
34
  "httpx>=0.28.1,<1",
35
- "opentelemetry-api>=1.38.0,<2",
35
+ "opentelemetry-api>=1.42.1,<2",
36
36
  "pydantic>=2.13.4,<3",
37
37
  "python-dotenv>=1.2.2,<2",
38
38
  ]
@@ -46,8 +46,8 @@ Issues = "https://github.com/sourcegraph/src-py-lib/issues"
46
46
 
47
47
  [project.optional-dependencies]
48
48
  otel = [
49
- "opentelemetry-exporter-otlp-proto-http>=1.38.0,<2",
50
- "opentelemetry-sdk>=1.38.0,<2",
49
+ "opentelemetry-exporter-otlp-proto-http>=1.42.1,<2",
50
+ "opentelemetry-sdk>=1.42.1,<2",
51
51
  ]
52
52
 
53
53
  [tool.hatch.build.targets.wheel]
@@ -491,9 +491,9 @@ dev = [
491
491
  [package.metadata]
492
492
  requires-dist = [
493
493
  { name = "httpx", specifier = ">=0.28.1,<1" },
494
- { name = "opentelemetry-api", specifier = ">=1.38.0,<2" },
495
- { name = "opentelemetry-exporter-otlp-proto-http", marker = "extra == 'otel'", specifier = ">=1.38.0,<2" },
496
- { name = "opentelemetry-sdk", marker = "extra == 'otel'", specifier = ">=1.38.0,<2" },
494
+ { name = "opentelemetry-api", specifier = ">=1.42.1,<2" },
495
+ { name = "opentelemetry-exporter-otlp-proto-http", marker = "extra == 'otel'", specifier = ">=1.42.1,<2" },
496
+ { name = "opentelemetry-sdk", marker = "extra == 'otel'", specifier = ">=1.42.1,<2" },
497
497
  { name = "pydantic", specifier = ">=2.13.4,<3" },
498
498
  { name = "python-dotenv", specifier = ">=1.2.2,<2" },
499
499
  ]
@@ -501,8 +501,8 @@ provides-extras = ["otel"]
501
501
 
502
502
  [package.metadata.requires-dev]
503
503
  dev = [
504
- { name = "opentelemetry-exporter-otlp-proto-http", specifier = ">=1.38.0,<2" },
505
- { name = "opentelemetry-sdk", specifier = ">=1.38.0,<2" },
504
+ { name = "opentelemetry-exporter-otlp-proto-http", specifier = ">=1.42.1,<2" },
505
+ { name = "opentelemetry-sdk", specifier = ">=1.42.1,<2" },
506
506
  { name = "pyright", specifier = ">=1.1.410" },
507
507
  { name = "ruff", specifier = ">=0.15.16" },
508
508
  ]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes