Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ poetry add avito-py
pip install avito-py
```

Требование к интерпретатору: Python `3.14` и выше в рамках ветки `3.x`. Репозиторий и релизный контур валидируются именно на Python `3.14`.
Требование к интерпретатору: Python `3.12`, `3.13` или `3.14`.

## Инициализация клиента

Expand Down
2 changes: 1 addition & 1 deletion STYLEGUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ Minimum target `mypy` profile:

```toml
[tool.mypy]
python_version = "3.14"
python_version = "3.12"
strict = true
warn_unused_ignores = true
warn_redundant_casts = true
Expand Down
2 changes: 1 addition & 1 deletion docs/site/tutorials/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
pip install avito-py
```

Требования: Python 3.14 и выше.
Требования: Python 3.12, 3.13 или 3.14.

---

Expand Down
43 changes: 39 additions & 4 deletions poetry.lock

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

8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@ classifiers=[
"Intended Audience :: Information Technology",
"Natural Language :: Russian",
"Natural Language :: English",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]

[tool.poetry.dependencies]
python = "^3.14"
python = ">=3.12,<4.0"
httpx = "^0.28.1"

[tool.poetry.group.dev.dependencies]
Expand Down Expand Up @@ -64,7 +66,7 @@ skip_empty = true
show_missing = true

[tool.mypy]
python_version = "3.14"
python_version = "3.12"
strict = true
warn_unused_ignores = true
warn_redundant_casts = true
Expand All @@ -75,7 +77,7 @@ packages = ["avito"]
exclude = ["tests"]

[tool.ruff]
target-version = "py314"
target-version = "py312"
line-length = 100

[tool.ruff.lint]
Expand Down
Loading