Skip to content
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 phrasetms_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"""


__version__ = "0.3.9"
__version__ = "0.3.10"

# import apis into sdk package
from phrasetms_client.api.additional_workflow_step_api import AdditionalWorkflowStepApi
Expand Down
2 changes: 1 addition & 1 deletion phrasetms_client/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ def to_debug_report(self):
"OS: {env}\n"
"Python Version: {pyversion}\n"
"Version of the API: Latest\n"
"SDK Package Version: 0.3.9".format(env=sys.platform, pyversion=sys.version)
"SDK Package Version: 0.3.10".format(env=sys.platform, pyversion=sys.version)
)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "phrasetms_client"
version = "0.3.9"
version = "0.3.10"
description = "Phrase TMS API"
authors = ["Martin Chrástek"]
license = "NoLicense"
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@


from setuptools import setup, find_packages # noqa: H301
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

# To install the library, run the following
#
Expand All @@ -21,7 +24,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "phrasetms-client"
VERSION = "0.3.9"
VERSION = "0.3.10"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = ["urllib3 >= 1.25.3", "python-dateutil", "pydantic >= 1.10.5, < 2", "aenum"]

Expand All @@ -37,7 +40,5 @@
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
long_description_content_type="text/markdown",
long_description="""\
Welcome to Phrase&#39;s TMS API documentation. Please visit our [help center](https://support.phrase.com/hc/en-us/sections/5709662083612) for more information about the APIs. If you have any questions, please contact [Support](https://support.phrase.com/hc/requests/new). Please, include the &#x60;User-Agent&#x60; header with the name of your application or project. It might be a good idea to include some sort of contact information as well, so that we can get in touch if necessary. Examples of excellent &#x60;User-Agent&#x60; headers: &gt; User-Agent: Example mobile app (example@phrase.com) &lt;br/&gt; User-Agent: ACME Inc Java 1.8 Client (http://acmeinc.com/contact) # noqa: E501
""",
long_description=long_description,
)