Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"cliVersion": "3.24.4",
"generatorName": "fernapi/fern-python-sdk",
"generatorVersion": "4.46.3",
"generatorConfig": {
"inline_request_params": true,
"client": {
"class_name": "BaseSchematic",
"filename": "base_client.py",
"exported_class_name": "Schematic",
"exported_filename": "client.py"
},
"additional_init_exports": [
{
"from": "client",
"imports": [
"AsyncSchematic",
"AsyncSchematicConfig",
"LocalCache",
"Schematic",
"SchematicConfig"
]
}
]
}
}
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: ci

Check notice on line 1 in .github/workflows/ci.yml

View check run for this annotation

Fencer Code / Fencer

Vulnerability: VULN-NECXWU

Ensure top-level permissions are not set to write-all

on: [push]
jobs:
compile:
Expand All @@ -10,7 +9,7 @@
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
- name: Bootstrap poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
Expand All @@ -26,15 +25,15 @@
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
- name: Bootstrap poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
- name: Install dependencies
run: poetry install

- name: Test
run: poetry run pytest -rP .
run: poetry run pytest -rP -n auto .

publish:
needs: [compile, test]
Expand All @@ -46,7 +45,7 @@
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
- name: Bootstrap poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## 1.1.5 - 2025-12-19
* SDK regeneration
* Unable to analyze changes with AI, incrementing PATCH version.

36 changes: 35 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[project]
name = "schematichq"
dynamic = ["version"]

[tool.poetry]
name = "schematichq"
version = "1.1.4"
version = "1.1.5"
description = ""
readme = "README.md"
authors = []
Expand Down Expand Up @@ -31,7 +32,7 @@ packages = [
{ include = "schematic", from = "src"}
]

[project.urls]
[tool.poetry.urls]
Repository = 'https://github.com/schematichq/schematic-python'

[tool.poetry.dependencies]
Expand All @@ -45,6 +46,7 @@ typing_extensions = ">= 4.0.0"
mypy = "==1.13.0"
pytest = "^7.4.0"
pytest-asyncio = "^0.23.5"
pytest-xdist = "^3.6.1"
python-dateutil = "^2.9.0"
types-python-dateutil = "^2.9.0.20240316"
ruff = "==0.11.5"
Expand Down
Loading
Loading