Skip to content

Commit 0123b36

Browse files
SDK regeneration
Unable to analyze changes with AI, incrementing PATCH version.
1 parent 202f560 commit 0123b36

2,509 files changed

Lines changed: 14195 additions & 30992 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: 0 additions & 17 deletions
This file was deleted.

.fernignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ legacy
1010
src/square/core/api_error.py
1111
src/square/utils/webhooks_helper.py
1212
tests/integration
13-
README.md
13+
README.md
14+
changelog.md

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
dist/
12
.mypy_cache/
2-
.ruff_cache/
33
__pycache__/
4-
dist/
54
poetry.toml
5+
.ruff_cache/

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 Square.
3+
Copyright (c) 2026 Square.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

changelog.md

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

poetry.lock

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

pyproject.toml

Lines changed: 6 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "squareup"
33

44
[tool.poetry]
55
name = "squareup"
6-
version = "43.2.1.20251016"
6+
version = "43.2.2"
77
description = ""
88
readme = "README.md"
99
authors = []
@@ -31,24 +31,23 @@ packages = [
3131
{ include = "square", from = "src"}
3232
]
3333

34-
[tool.poetry.urls]
34+
[project.urls]
3535
Repository = 'https://github.com/square/square-python-sdk'
3636

3737
[tool.poetry.dependencies]
3838
python = "^3.8"
3939
httpx = ">=0.21.2"
4040
pydantic = ">= 1.9.2"
41-
pydantic-core = ">=2.18.2"
41+
pydantic-core = "^2.18.2"
4242
typing_extensions = ">= 4.0.0"
4343

44-
[tool.poetry.group.dev.dependencies]
45-
mypy = "==1.13.0"
44+
[tool.poetry.dev-dependencies]
45+
mypy = "1.0.1"
4646
pytest = "^7.4.0"
4747
pytest-asyncio = "^0.23.5"
48-
pytest-xdist = "^3.6.1"
4948
python-dateutil = "^2.9.0"
5049
types-python-dateutil = "^2.9.0.20240316"
51-
ruff = "==0.11.5"
50+
ruff = "^0.5.6"
5251

5352
[tool.pytest.ini_options]
5453
testpaths = [ "tests" ]
@@ -60,26 +59,6 @@ plugins = ["pydantic.mypy"]
6059
[tool.ruff]
6160
line-length = 120
6261

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

8463
[build-system]
8564
requires = ["poetry-core"]

0 commit comments

Comments
 (0)