Skip to content

Commit c348b58

Browse files
Python Generator upgrades (#97)
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
1 parent 5233f8f commit c348b58

File tree

1,277 files changed

+75036
-21730
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,277 files changed

+75036
-21730
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ dist/
22
.mypy_cache/
33
__pycache__/
44
poetry.toml
5+
.ruff_cache/

poetry.lock

+147-115
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "MergePythonClient"
3-
version = "1.0.13"
3+
version = "1.1.0"
44
description = ""
55
readme = "README.md"
66
authors = []
@@ -34,6 +34,7 @@ Repository = 'https://github.com/merge-api/merge-python-client'
3434
python = "^3.8"
3535
httpx = ">=0.21.2"
3636
pydantic = ">= 1.9.2"
37+
pydantic-core = "^2.18.2"
3738
typing_extensions = ">= 4.0.0"
3839

3940
[tool.poetry.dev-dependencies]
@@ -42,6 +43,7 @@ pytest = "^7.4.0"
4243
pytest-asyncio = "^0.23.5"
4344
python-dateutil = "^2.9.0"
4445
types-python-dateutil = "^2.9.0.20240316"
46+
ruff = "^0.5.6"
4547

4648
[tool.pytest.ini_options]
4749
testpaths = [ "tests" ]
@@ -50,6 +52,9 @@ asyncio_mode = "auto"
5052
[tool.mypy]
5153
plugins = ["pydantic.mypy"]
5254

55+
[tool.ruff]
56+
line-length = 120
57+
5358

5459
[build-system]
5560
requires = ["poetry-core"]

0 commit comments

Comments
 (0)