Skip to content

Commit 0178724

Browse files
committed
SDK regeneration
1 parent e93b420 commit 0178724

File tree

180 files changed

+18132
-9978
lines changed

Some content is hidden

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

180 files changed

+18132
-9978
lines changed

.github/workflows/ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ jobs:
3232
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
3333
- name: Install dependencies
3434
run: poetry install
35+
3536
- name: Test
36-
run: poetry run pytest .
37+
run: poetry run pytest ./tests/custom/
3738

3839
publish:
3940
needs: [compile, test]

poetry.lock

+197-144
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+35-2
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,55 @@
11
[tool.poetry]
22
name = "webflow"
3-
version = "v1.2.0"
3+
version = "1.2.2"
44
description = ""
55
readme = "README.md"
66
authors = []
7+
keywords = []
8+
9+
classifiers = [
10+
"Intended Audience :: Developers",
11+
"Programming Language :: Python",
12+
"Programming Language :: Python :: 3",
13+
"Programming Language :: Python :: 3.8",
14+
"Programming Language :: Python :: 3.9",
15+
"Programming Language :: Python :: 3.10",
16+
"Programming Language :: Python :: 3.11",
17+
"Programming Language :: Python :: 3.12",
18+
"Operating System :: OS Independent",
19+
"Operating System :: POSIX",
20+
"Operating System :: MacOS",
21+
"Operating System :: POSIX :: Linux",
22+
"Operating System :: Microsoft :: Windows",
23+
"Topic :: Software Development :: Libraries :: Python Modules",
24+
"Typing :: Typed"
25+
]
726
packages = [
827
{ include = "webflow", from = "src"}
928
]
1029

30+
[project.urls]
31+
Repository = 'https://github.com/webflow/webflow-python'
32+
1133
[tool.poetry.dependencies]
1234
python = "^3.8"
1335
httpx = ">=0.21.2"
1436
pydantic = ">= 1.9.2"
1537
typing_extensions = ">= 4.0.0"
1638

1739
[tool.poetry.dev-dependencies]
18-
mypy = "^1.8.0"
40+
mypy = "1.0.1"
1941
pytest = "^7.4.0"
42+
pytest-asyncio = "^0.23.5"
43+
python-dateutil = "^2.9.0"
44+
types-python-dateutil = "^2.9.0.20240316"
45+
46+
[tool.pytest.ini_options]
47+
testpaths = [ "tests" ]
48+
asyncio_mode = "auto"
49+
50+
[tool.mypy]
51+
plugins = ["pydantic.mypy"]
52+
2053

2154
[build-system]
2255
requires = ["poetry-core"]

0 commit comments

Comments
 (0)