Skip to content

Commit 808a8b8

Browse files
committed
Update fix version.
1 parent f0859f4 commit 808a8b8

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

README.md

Lines changed: 1 addition & 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/25.3)
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/25.3.1)
22

33
Aspose.Cells Cloud for Python enables you to handle various aspects of Excel files, including cell data, styles, formulas, charts, pivot tables, data validation, comments, drawing objects, images, hyperlinks, and so on. Additionally, it supports operations such as splitting, merging, repairing, and converting to other compatible file formats.
44

asposecellscloud/api_client.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,12 @@
2626

2727
from __future__ import absolute_import
2828

29-
import os
30-
import re
3129
import json
3230
import mimetypes
31+
import os
32+
import re
3333
import tempfile
3434
import threading
35-
3635
from datetime import date, datetime
3736

3837
# python 2 and python 3 compatibility library
@@ -88,7 +87,7 @@ def __init__(self, host=None, header_name=None, header_value=None, cookie=None):
8887
self.host = host
8988
self.cookie = cookie
9089
# Set default User-Agent.
91-
self.user_agent = 'Aspose.Cells.Cloud/25.3/python'
90+
self.user_agent = 'Aspose.Cells.Cloud/25.3.1/python'
9291

9392
@property
9493
def user_agent(self):

asposecellscloud/configuration.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,10 @@
2727

2828
from __future__ import absolute_import
2929

30-
import urllib3
31-
32-
import sys
3330
import logging
31+
import sys
3432

33+
import urllib3
3534
from six import iteritems
3635
from six.moves import http_client as httplib
3736

@@ -259,5 +258,5 @@ def to_debug_report(self):
259258
"OS: {env}\n"\
260259
"Python Version: {pyversion}\n"\
261260
"Version of the API: v3.0\n"\
262-
"SDK Package Version: 25.3".\
261+
"SDK Package Version: 25.3.1".\
263262
format(env=sys.platform, pyversion=sys.version)

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# coding: utf-8
22

33
import sys
4-
from setuptools import setup, find_packages
4+
5+
from setuptools import find_packages, setup
56

67
NAME = "asposecellscloud"
7-
VERSION = "25.3"
8+
VERSION = "25.3.1"
89
# To install the library, run the following
910
#
1011
# python setup.py install

0 commit comments

Comments
 (0)