Skip to content

Commit 0bdc6cf

Browse files
SDK regeneration
1 parent f46c228 commit 0bdc6cf

File tree

299 files changed

+30232
-15789
lines changed

Some content is hidden

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

299 files changed

+30232
-15789
lines changed

.fern/metadata.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"cliVersion": "4.48.1",
3+
"generatorName": "fernapi/fern-python-sdk",
4+
"generatorVersion": "4.64.1",
5+
"generatorConfig": {
6+
"client_class_name": "Polytomic"
7+
},
8+
"originGitCommit": "9cf88dbd156f6c881693d8273fa764c1ba18020f",
9+
"sdkVersion": "1.16.2"
10+
}

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
dist/
21
.mypy_cache/
2+
.ruff_cache/
33
__pycache__/
4+
dist/
45
poetry.toml
5-
.ruff_cache/

poetry.lock

Lines changed: 140 additions & 99 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[project]
22
name = "polytomic"
3+
dynamic = ["version"]
34

45
[tool.poetry]
56
name = "polytomic"
6-
version = "1.16.1"
7+
version = "0.0.0"
78
description = ""
89
readme = "README.md"
910
authors = []
@@ -18,6 +19,9 @@ classifiers = [
1819
"Programming Language :: Python :: 3.10",
1920
"Programming Language :: Python :: 3.11",
2021
"Programming Language :: Python :: 3.12",
22+
"Programming Language :: Python :: 3.13",
23+
"Programming Language :: Python :: 3.14",
24+
"Programming Language :: Python :: 3.15",
2125
"Operating System :: OS Independent",
2226
"Operating System :: POSIX",
2327
"Operating System :: MacOS",
@@ -31,23 +35,24 @@ packages = [
3135
{ include = "polytomic", from = "src"}
3236
]
3337

34-
[project.urls]
38+
[tool.poetry.urls]
3539
Repository = 'https://github.com/polytomic/polytomic-python'
3640

3741
[tool.poetry.dependencies]
3842
python = "^3.8"
3943
httpx = ">=0.21.2"
4044
pydantic = ">= 1.9.2"
41-
pydantic-core = "^2.18.2"
45+
pydantic-core = ">=2.18.2"
4246
typing_extensions = ">= 4.0.0"
4347

44-
[tool.poetry.dev-dependencies]
45-
mypy = "1.0.1"
48+
[tool.poetry.group.dev.dependencies]
49+
mypy = "==1.13.0"
4650
pytest = "^7.4.0"
4751
pytest-asyncio = "^0.23.5"
52+
pytest-xdist = "^3.6.1"
4853
python-dateutil = "^2.9.0"
4954
types-python-dateutil = "^2.9.0.20240316"
50-
ruff = "^0.5.6"
55+
ruff = "==0.11.5"
5156

5257
[tool.pytest.ini_options]
5358
testpaths = [ "tests" ]
@@ -59,6 +64,26 @@ plugins = ["pydantic.mypy"]
5964
[tool.ruff]
6065
line-length = 120
6166

67+
[tool.ruff.lint]
68+
select = [
69+
"E", # pycodestyle errors
70+
"F", # pyflakes
71+
"I", # isort
72+
]
73+
ignore = [
74+
"E402", # Module level import not at top of file
75+
"E501", # Line too long
76+
"E711", # Comparison to `None` should be `cond is not None`
77+
"E712", # Avoid equality comparisons to `True`; use `if ...:` checks
78+
"E721", # Use `is` and `is not` for type comparisons, or `isinstance()` for insinstance checks
79+
"E722", # Do not use bare `except`
80+
"E731", # Do not assign a `lambda` expression, use a `def`
81+
"F821", # Undefined name
82+
"F841" # Local variable ... is assigned to but never used
83+
]
84+
85+
[tool.ruff.lint.isort]
86+
section-order = ["future", "standard-library", "third-party", "first-party"]
6287

6388
[build-system]
6489
requires = ["poetry-core"]

0 commit comments

Comments
 (0)