We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9eda68 commit 7e7d4f4Copy full SHA for 7e7d4f4
2 files changed
.github/workflows/ci.yaml
@@ -105,7 +105,7 @@ jobs:
105
- name: Install sdk
106
working-directory: ./sdk-repo-updated
107
run: |
108
- pip install poetry==1.8.5
+ pip install poetry
109
poetry config virtualenvs.create false
110
python -m venv .venv
111
. .venv/bin/activate
templates/python/pyproject.mustache
@@ -27,7 +27,7 @@ pydantic = ">=2.9.2"
27
python-dateutil = ">=2.9.0.post0"
28
29
[tool.poetry.group.dev.dependencies]
30
-black = ">=24.8.0"
+black = "<25.0.0" # Upgrading to a newer version requires bigger changes in the python generator. The formatting style in black has changed.
31
pytest = ">=8.3.3"
32
flake8 = [
33
{ version= ">=5.0.3", python="<3.12"},
0 commit comments