Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
8f9a5e1
Added enum CURRENTLY_UNAVAILABLE_IN_COURT
pradeeps-uc Nov 20, 2025
8ec5790
Merge branch 'main' of github.com:UniCourt/enterprise-api-py-sdk into…
pradeeps-uc Nov 20, 2025
2094ecd
Update typing-extensions dependency version in pyproject.toml and req…
pradeeps-uc Nov 20, 2025
92d54a2
Dev2 (#1)
pradeeps-uc Nov 20, 2025
cff328e
Merge branch 'main' of github.com:pradeeps-uc/enterprise-api-py-sdk i…
pradeeps-uc Nov 20, 2025
3eefccf
Update typing-extensions dependency version in setup.py to 4.14.1
pradeeps-uc Nov 20, 2025
8956b34
Dev2-test2 (#2)
pradeeps-uc Nov 20, 2025
fbe7c4b
Revert "Dev2-test2 (#2)" (#3)
pradeeps-uc Nov 20, 2025
af36019
Merge branch 'main' of github.com:pradeeps-uc/enterprise-api-py-sdk i…
pradeeps-uc Nov 20, 2025
e183a27
Dev2-test3 (#4)
pradeeps-uc Nov 20, 2025
ebc5df8
Updated the test data with data returning status code 200
pradeeps-uc Nov 21, 2025
18a44a9
Update README.md to simplify test execution instructions and improve …
pradeeps-uc Nov 21, 2025
05f0bbd
Merge branch 'main' of github.com:pradeeps-uc/enterprise-api-py-sdk i…
pradeeps-uc Nov 21, 2025
923f5a2
Refactor README.md to standardize environment variable formatting and…
pradeeps-uc Nov 21, 2025
49bdb96
Bumped unicourt SDK patch version in setup.py
pradeeps-uc Nov 21, 2025
d681972
Merge branch 'main' of github.com:UniCourt/enterprise-api-py-sdk into…
pradeeps-uc Nov 21, 2025
f45c8c7
added workflow_dispatch
pradeeps-uc Nov 21, 2025
e6032da
Merge branch 'main' of github.com:UniCourt/enterprise-api-py-sdk into…
pradeeps-uc Nov 21, 2025
88b401a
Enhance README.md with contributing guidelines and GitHub Actions det…
pradeeps-uc Nov 21, 2025
b2c7546
Update README.md to clarify the process for merging pull requests and…
pradeeps-uc Nov 21, 2025
72a0ac0
Fix typo in README.md regarding request arguments in SDK functions
pradeeps-uc Nov 21, 2025
2107b56
Update README.md to rename 'Contributing' section to 'Merging and Rel…
pradeeps-uc Nov 21, 2025
6a14782
Remove redundant introductory line from 'Merging and Release Process'…
pradeeps-uc Nov 21, 2025
88dcdda
Update README.md to add a note about GitHub Actions workflow limitati…
pradeeps-uc Nov 24, 2025
c7e634b
Refactor README.md to enhance clarity on installation instructions, c…
pradeeps-uc Nov 24, 2025
7beda68
Merge branch 'main' of github.com:UniCourt/enterprise-api-py-sdk into…
pradeeps-uc Dec 10, 2025
be6ee46
Update version to 1.1.2 and set urllib3 dependency to 2.6.1 in pyproj…
pradeeps-uc Dec 18, 2025
9ea5453
Update authors and repository details in pyproject.toml, and refine k…
pradeeps-uc Dec 18, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[tool.poetry]
name = "unicourt"
version = "1.1.0"
version = "1.1.2"
description = "UniCourt Enterprise APIs"
authors = ["OpenAPI Generator Community <team@openapitools.org>"]
authors = ["UniCourt <support@unicourt.com>"]
license = "NoLicense"
readme = "README.md"
repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID"
keywords = ["OpenAPI", "OpenAPI-Generator", "UniCourt Enterprise APIs"]
repository = "https://github.com/UniCourt/enterprise-api-py-sdk/tree/main"
keywords = ["UniCourt Enterprise APIs"]
include = ["unicourt/py.typed"]

[tool.poetry.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
python_dateutil >= 2.5.3
setuptools >= 21.0.0
urllib3 >= 1.25.3, < 2.1.0
urllib3 >= 1.25.3
pydantic >= 2
typing-extensions >= 4.14.1
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ def _generate_description():
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "unicourt"
VERSION = "1.1.1"
VERSION = "1.1.2"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3, < 2.1.0",
"urllib3 >= 1.25.3",
"python-dateutil",
"pydantic >= 2",
"typing-extensions >= 4.14.1",
Expand Down