Skip to content

Commit 36e3360

Browse files
Release 1.9.0
1 parent 5b2b1d2 commit 36e3360

40 files changed

+11859
-6945
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: 146 additions & 135 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,48 @@
11
[tool.poetry]
22
name = "polytomic"
3-
version = "1.8.0"
3+
version = "1.9.0"
44
description = ""
55
readme = "README.md"
66
authors = []
7+
keywords = []
8+
license = "MIT"
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+
"License :: OSI Approved :: MIT License"
26+
]
727
packages = [
828
{ include = "polytomic", from = "src"}
929
]
1030

31+
[project.urls]
32+
Repository = 'https://github.com/polytomic/polytomic-python'
33+
1134
[tool.poetry.dependencies]
1235
python = "^3.8"
1336
httpx = ">=0.21.2"
1437
pydantic = ">= 1.9.2"
1538
typing_extensions = ">= 4.0.0"
1639

1740
[tool.poetry.dev-dependencies]
18-
mypy = "1.9.0"
41+
mypy = "1.0.1"
1942
pytest = "^7.4.0"
2043
pytest-asyncio = "^0.23.5"
2144
python-dateutil = "^2.9.0"
45+
types-python-dateutil = "^2.9.0.20240316"
2246

2347
[tool.pytest.ini_options]
2448
testpaths = [ "tests" ]

0 commit comments

Comments
 (0)