Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 0.1.0-alpha.3 #8

Merged
merged 4 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.2"
".": "0.1.0-alpha.3"
}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 0.1.0-alpha.3 (2024-05-14)

Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/StructifyAI/structify-python/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)

### Features

* adding skip tests ([af3bc48](https://github.com/StructifyAI/structify-python/commit/af3bc4824d42772781053b67dd1d2b016668a63f))
* fixing ci ([8099165](https://github.com/StructifyAI/structify-python/commit/80991655ef7d5837b3ee774ca0ba98df398289b5))
* fixing tests ([a1afa67](https://github.com/StructifyAI/structify-python/commit/a1afa67ca30973c6477066b9fe0a63d9df274c92))

## 0.1.0-alpha.2 (2024-05-14)

Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/StructifyAI/structify-python/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "structifyai"
version = "0.1.0-alpha.2"
version = "0.1.0-alpha.3"
description = "The official Python library for the structify API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/structify/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "structify"
__version__ = "0.1.0-alpha.2" # x-release-please-version
__version__ = "0.1.0-alpha.3" # x-release-please-version
6 changes: 6 additions & 0 deletions tests/api_resources/test_documents.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ def test_path_params_download(self, client: Structify) -> None:
)

@parametrize
@pytest.mark.skip(reason="stainless doesn't support this yet.")
def test_method_upload(self, client: Structify) -> None:
document = client.documents.upload(
doctype="Text",
Expand All @@ -128,6 +129,7 @@ def test_method_upload(self, client: Structify) -> None:
assert document is None

@parametrize
@pytest.mark.skip(reason="stainless doesn't support this yet.")
def test_raw_response_upload(self, client: Structify) -> None:
response = client.documents.with_raw_response.upload(
doctype="Text",
Expand All @@ -141,6 +143,7 @@ def test_raw_response_upload(self, client: Structify) -> None:
assert document is None

@parametrize
@pytest.mark.skip(reason="stainless doesn't support this yet.")
def test_streaming_response_upload(self, client: Structify) -> None:
with client.documents.with_streaming_response.upload(
doctype="Text",
Expand Down Expand Up @@ -260,6 +263,7 @@ async def test_path_params_download(self, async_client: AsyncStructify) -> None:
"",
)

@pytest.mark.skip(reason="stainless doesn't support this yet.")
@parametrize
async def test_method_upload(self, async_client: AsyncStructify) -> None:
document = await async_client.documents.upload(
Expand All @@ -269,6 +273,7 @@ async def test_method_upload(self, async_client: AsyncStructify) -> None:
)
assert document is None

@pytest.mark.skip(reason="stainless doesn't support yet.")
@parametrize
async def test_raw_response_upload(self, async_client: AsyncStructify) -> None:
response = await async_client.documents.with_raw_response.upload(
Expand All @@ -283,6 +288,7 @@ async def test_raw_response_upload(self, async_client: AsyncStructify) -> None:
assert document is None

@parametrize
@pytest.mark.skip(reason="stainless doesn't support yet.")
async def test_streaming_response_upload(self, async_client: AsyncStructify) -> None:
async with async_client.documents.with_streaming_response.upload(
doctype="Text",
Expand Down