Skip to content

Commit

Permalink
ci: fix python versions
Browse files Browse the repository at this point in the history
Change-Id: I8923ce74364f5d39c678a3989efdc467e9d42663
  • Loading branch information
jd committed Dec 11, 2024
1 parent b61c878 commit 007055c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [3.10, 3.11, 3.12, 3.13]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "Apache"
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.10"
python = ">=3.10,<4"
# We set this version explicitly to avoid breaking changes
pytest-opentelemetry = "1.0.1"
opentelemetry-exporter-otlp-proto-http = ">=1.25"
Expand Down

0 comments on commit 007055c

Please sign in to comment.