Skip to content

Commit 43f45e1

Browse files
SDK regeneration
1 parent f46c228 commit 43f45e1

300 files changed

Lines changed: 30668 additions & 15956 deletions

File tree

Some content is hidden

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

.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": "5.1.3",
5+
"generatorConfig": {
6+
"client_class_name": "Polytomic"
7+
},
8+
"originGitCommit": "32966a94f67091ee85af7e89974b0d3c886dec0e",
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: 356 additions & 268 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 34 additions & 11 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 = []
@@ -13,11 +14,12 @@ classifiers = [
1314
"Intended Audience :: Developers",
1415
"Programming Language :: Python",
1516
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.8",
17-
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
2019
"Programming Language :: Python :: 3.12",
20+
"Programming Language :: Python :: 3.13",
21+
"Programming Language :: Python :: 3.14",
22+
"Programming Language :: Python :: 3.15",
2123
"Operating System :: OS Independent",
2224
"Operating System :: POSIX",
2325
"Operating System :: MacOS",
@@ -31,23 +33,24 @@ packages = [
3133
{ include = "polytomic", from = "src"}
3234
]
3335

34-
[project.urls]
36+
[tool.poetry.urls]
3537
Repository = 'https://github.com/polytomic/polytomic-python'
3638

3739
[tool.poetry.dependencies]
38-
python = "^3.8"
40+
python = "^3.10"
3941
httpx = ">=0.21.2"
4042
pydantic = ">= 1.9.2"
41-
pydantic-core = "^2.18.2"
43+
pydantic-core = ">=2.18.2,<2.44.0"
4244
typing_extensions = ">= 4.0.0"
4345

44-
[tool.poetry.dev-dependencies]
45-
mypy = "1.0.1"
46-
pytest = "^7.4.0"
47-
pytest-asyncio = "^0.23.5"
46+
[tool.poetry.group.dev.dependencies]
47+
mypy = "==1.13.0"
48+
pytest = "^8.2.0"
49+
pytest-asyncio = "^1.0.0"
50+
pytest-xdist = "^3.6.1"
4851
python-dateutil = "^2.9.0"
4952
types-python-dateutil = "^2.9.0.20240316"
50-
ruff = "^0.5.6"
53+
ruff = "==0.11.5"
5154

5255
[tool.pytest.ini_options]
5356
testpaths = [ "tests" ]
@@ -59,6 +62,26 @@ plugins = ["pydantic.mypy"]
5962
[tool.ruff]
6063
line-length = 120
6164

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

6386
[build-system]
6487
requires = ["poetry-core"]

0 commit comments

Comments
 (0)