Skip to content

Commit ea6a398

Browse files
committed
Release Aspose.Cells Cloud SDK 24.1.3
1 parent fa4c112 commit ea6a398

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![PyPI](https://img.shields.io/pypi/v/asposecellscloud) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/asposecellscloud) ![PyPI - Downloads](https://img.shields.io/pypi/dm/asposecellscloud) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-python)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-python/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-python/24.1.2)
1+
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![PyPI](https://img.shields.io/pypi/v/asposecellscloud) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/asposecellscloud) ![PyPI - Downloads](https://img.shields.io/pypi/dm/asposecellscloud) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-python)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-python/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-python/24.1.3)
22

33

44
# Python SDK for Spreadsheet Processing in Cloud
@@ -25,6 +25,9 @@ Python Cloud SDK wraps Aspose.Cells REST API so you could seamlessly integrate M
2525

2626
- Update time operate question for iron python.
2727

28+
## Feature & Enhancements in Version 24.1.3
29+
30+
- Fix lost request files.
2831

2932

3033
## Read & Write Spreadsheet Formats

asposecellscloud/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def __init__(self, host=None, header_name=None, header_value=None, cookie=None):
8888
self.host = host
8989
self.cookie = cookie
9090
# Set default User-Agent.
91-
self.user_agent = 'Aspose.Cells.Cloud/24.1.2/python'
91+
self.user_agent = 'Aspose.Cells.Cloud/24.1.3/python'
9292

9393
@property
9494
def user_agent(self):

asposecellscloud/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,5 +259,5 @@ def to_debug_report(self):
259259
"OS: {env}\n"\
260260
"Python Version: {pyversion}\n"\
261261
"Version of the API: v3.0\n"\
262-
"SDK Package Version: 24.1.2".\
262+
"SDK Package Version: 24.1.3".\
263263
format(env=sys.platform, pyversion=sys.version)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "asposecellscloud"
3-
version = "24.1.2"
3+
version = "24.1.3"
44
authors = [
55
{ name="Aspose Cloud", email="aspose.cloud@aspose.com" },
66
]

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55

66
NAME = "asposecellscloud"
7-
VERSION = "24.1.2"
7+
VERSION = "24.1.3"
88
# To install the library, run the following
99
#
1010
# python setup.py install
@@ -23,7 +23,7 @@
2323
url="https://github.com/aspose-cells-cloud/aspose-cells-cloud-python",
2424
keywords=["aspose", "cells", "cloud"],
2525
install_requires=REQUIRES,
26-
packages=['asposecellscloud', 'asposecellscloud.apis', 'asposecellscloud.models'],
26+
packages=['asposecellscloud', 'asposecellscloud.apis', 'asposecellscloud.models','asposecellscloud.requests'],
2727
include_package_data=True,
2828
long_description="Python Cloud SDK wraps Aspose.Cells REST API so you could seamlessly integrate Microsoft Excel� spreadsheet generation, manipulation, conversion & inspection features into your own Python applications.",
2929
classifiers=[

0 commit comments

Comments
 (0)