Skip to content

Commit 57b68e3

Browse files
committed
SDK regeneration
1 parent fb6dc00 commit 57b68e3

38 files changed

+1260
-826
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
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

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

pyproject.toml

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,35 @@
11
[tool.poetry]
22
name = "multion"
3-
version = "1.3.0"
3+
version = "1.3.1"
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 = "multion", from = "src"}
928
]
1029

30+
[project.urls]
31+
Repository = 'https://github.com/MULTI-ON/multion-python'
32+
1133
[tool.poetry.dependencies]
1234
python = "^3.8"
1335
agentops = "^0.2.3"
@@ -17,10 +39,11 @@ pydantic = ">= 1.9.2"
1739
typing_extensions = ">= 4.0.0"
1840

1941
[tool.poetry.dev-dependencies]
20-
mypy = "1.9.0"
42+
mypy = "1.0.1"
2143
pytest = "^7.4.0"
2244
pytest-asyncio = "^0.23.5"
2345
python-dateutil = "^2.9.0"
46+
types-python-dateutil = "^2.9.0.20240316"
2447

2548
[tool.pytest.ini_options]
2649
testpaths = [ "tests" ]

0 commit comments

Comments
 (0)