Skip to content

Commit 80465c9

Browse files
SDK Regeneration
1 parent f18944a commit 80465c9

File tree

214 files changed

+10386
-5080
lines changed

Some content is hidden

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

214 files changed

+10386
-5080
lines changed

.fernignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# Specify files that shouldn't be modified by Fern
2-
README.md
2+
3+
README.md
4+
src/polytomic/types/jsonschema_definitions.py

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: poetry install
3535

3636
- name: Test
37-
run: poetry run pytest ./tests/custom/
37+
run: poetry run pytest -rP .
3838

3939
publish:
4040
needs: [compile, test]

.gitignore

Lines changed: 1 addition & 0 deletions
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

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

pyproject.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
[project]
2+
name = "polytomic"
3+
14
[tool.poetry]
25
name = "polytomic"
3-
version = "1.11.2"
6+
version = "1.11.3"
47
description = ""
58
readme = "README.md"
69
authors = []
@@ -35,6 +38,7 @@ Repository = 'https://github.com/polytomic/polytomic-python'
3538
python = "^3.8"
3639
httpx = ">=0.21.2"
3740
pydantic = ">= 1.9.2"
41+
pydantic-core = "^2.18.2"
3842
typing_extensions = ">= 4.0.0"
3943

4044
[tool.poetry.dev-dependencies]
@@ -43,6 +47,7 @@ pytest = "^7.4.0"
4347
pytest-asyncio = "^0.23.5"
4448
python-dateutil = "^2.9.0"
4549
types-python-dateutil = "^2.9.0.20240316"
50+
ruff = "^0.5.6"
4651

4752
[tool.pytest.ini_options]
4853
testpaths = [ "tests" ]
@@ -51,6 +56,9 @@ asyncio_mode = "auto"
5156
[tool.mypy]
5257
plugins = ["pydantic.mypy"]
5358

59+
[tool.ruff]
60+
line-length = 120
61+
5462

5563
[build-system]
5664
requires = ["poetry-core"]

0 commit comments

Comments
 (0)