Skip to content

Commit e37726c

Browse files
SDK regeneration (#44)
Unable to analyze changes with AI, incrementing PATCH version. Co-authored-by: fern-api[bot] <115122769+fern-api[bot]@users.noreply.github.com>
1 parent f186163 commit e37726c

File tree

189 files changed

+1509
-4091
lines changed

Some content is hidden

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

189 files changed

+1509
-4091
lines changed

.fern/metadata.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"cliVersion": "3.24.4",
3+
"generatorName": "fernapi/fern-python-sdk",
4+
"generatorVersion": "4.46.3",
5+
"generatorConfig": {
6+
"inline_request_params": true,
7+
"client": {
8+
"class_name": "BaseSchematic",
9+
"filename": "base_client.py",
10+
"exported_class_name": "Schematic",
11+
"exported_filename": "client.py"
12+
},
13+
"additional_init_exports": [
14+
{
15+
"from": "client",
16+
"imports": [
17+
"AsyncSchematic",
18+
"AsyncSchematicConfig",
19+
"LocalCache",
20+
"Schematic",
21+
"SchematicConfig"
22+
]
23+
}
24+
]
25+
}
26+
}

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
name: ci
2-
32
on: [push]
43
jobs:
54
compile:
@@ -10,7 +9,7 @@ jobs:
109
- name: Set up python
1110
uses: actions/setup-python@v4
1211
with:
13-
python-version: 3.8
12+
python-version: 3.9
1413
- name: Bootstrap poetry
1514
run: |
1615
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
@@ -26,15 +25,15 @@ jobs:
2625
- name: Set up python
2726
uses: actions/setup-python@v4
2827
with:
29-
python-version: 3.8
28+
python-version: 3.9
3029
- name: Bootstrap poetry
3130
run: |
3231
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
3332
- name: Install dependencies
3433
run: poetry install
3534

3635
- name: Test
37-
run: poetry run pytest -rP .
36+
run: poetry run pytest -rP -n auto .
3837

3938
publish:
4039
needs: [compile, test]
@@ -46,7 +45,7 @@ jobs:
4645
- name: Set up python
4746
uses: actions/setup-python@v4
4847
with:
49-
python-version: 3.8
48+
python-version: 3.9
5049
- name: Bootstrap poetry
5150
run: |
5251
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## 1.1.5 - 2025-12-19
2+
* SDK regeneration
3+
* Unable to analyze changes with AI, incrementing PATCH version.
4+

poetry.lock

Lines changed: 35 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

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

45
[tool.poetry]
56
name = "schematichq"
6-
version = "1.1.4"
7+
version = "1.1.5"
78
description = ""
89
readme = "README.md"
910
authors = []
@@ -31,7 +32,7 @@ packages = [
3132
{ include = "schematic", from = "src"}
3233
]
3334

34-
[project.urls]
35+
[tool.poetry.urls]
3536
Repository = 'https://github.com/schematichq/schematic-python'
3637

3738
[tool.poetry.dependencies]
@@ -45,6 +46,7 @@ typing_extensions = ">= 4.0.0"
4546
mypy = "==1.13.0"
4647
pytest = "^7.4.0"
4748
pytest-asyncio = "^0.23.5"
49+
pytest-xdist = "^3.6.1"
4850
python-dateutil = "^2.9.0"
4951
types-python-dateutil = "^2.9.0.20240316"
5052
ruff = "==0.11.5"

0 commit comments

Comments
 (0)