Skip to content

Commit 3fd4530

Browse files
Resolve merge conflict in 'pyproject.toml'
2 parents 1a47701 + 5588598 commit 3fd4530

File tree

22 files changed

+853
-571
lines changed

22 files changed

+853
-571
lines changed

examples/creating_config_file/with_wrapper.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
3535
[OPTIONAL] parameters
3636
---------------------
37-
avatar: str | None = None
3837
description: str | None = None
3938
subdomain: str | None = None
4039
start: str | None = None

pyproject.toml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "squarecloud-api"
3-
version = "3.1.4"
3+
version = "3.1.5"
44
description = "SquareCloud API wrapper"
55
authors = ["Robert Nogueira <robertlucasnogueira@gmail.com>"]
66
repository = "https://github.com/squarecloudofc/wrapper-api-py"
@@ -10,11 +10,11 @@ readme = "README.md"
1010
packages = [{ include = "squarecloud" }]
1111

1212
[tool.poetry.dependencies]
13-
python = "^3.10"
13+
python = "^3.9"
1414
aiohttp = "3.8.3"
1515
click = "^8.1.6"
1616
rich = "^13.5.2"
17-
python-dotenv = "^1.0.0"
17+
pydantic = "^2.5.2"
1818

1919
[tool.poetry.group.dev.dependencies]
2020
pytest = "^7.4.3"
@@ -26,13 +26,7 @@ python-dotenv = "^1.0.0"
2626
pytest-asyncio = "^0.21.1"
2727
pre-commit = "^3.3.3"
2828
ruff = "^0.0.289"
29-
30-
[tool.poetry.group.doc.dependencies]
31-
mkdocs-material = "^9.1.21"
32-
mkdocstrings = "^0.22.0"
33-
mkdocstrings-python = "^1.2.1"
34-
termynal = "^0.11.0"
35-
mkdocs-table-reader-plugin = "^2.0.1"
29+
memory-profiler = "^0.61.0"
3630

3731
[build-system]
3832
requires = ["poetry-core"]
@@ -47,7 +41,7 @@ profile = "black"
4741
line_length = 79
4842

4943
[tool.taskipy.tasks]
50-
lint = "isort . && blue --check --diff ."
44+
lint = "isort . && blue . && ruff ."
5145
pre_test = "task lint"
5246
test = "pytest -s -x --cov=squarecloud -vv tests"
5347
post_test = "coverage html"
@@ -64,4 +58,4 @@ line-length = 79
6458
exclude = ['env']
6559

6660
[tool.ruff.per-file-ignores]
67-
'__init__.py' = ['F401']
61+
'__init__.py' = ['F401']

squarecloud/__init__.py

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
from __future__ import annotations
22

33
from .client import Client, create_config_file
4-
from .errors import (
5-
ApplicationNotFound,
6-
AuthenticationFailure,
7-
BadRequestError,
8-
FewMemory,
9-
InvalidFile,
10-
MissingConfigFile,
11-
MissingDependenciesFile,
12-
NotFoundError,
13-
RequestError,
14-
SquareException,
15-
TooManyRequests,
4+
from .data import (
5+
AppData,
6+
BackupData,
7+
FileInfo,
8+
LogsData,
9+
PlanData,
10+
StatisticsData,
11+
StatusData,
12+
UploadData,
13+
UserData,
1614
)
1715
from .file import File
1816
from .http.endpoints import Endpoint

0 commit comments

Comments
 (0)