Skip to content

Commit 75d5ca1

Browse files
ivankamkinIvan Kamkin
and
Ivan Kamkin
authored
Release 25.4 (#87)
* Version updated * Update python version for tests cause runner for 20.04 deleted * Update README --------- Co-authored-by: Ivan Kamkin <[email protected]>
1 parent 099ac07 commit 75d5ca1

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/python-package.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
build:
1414
# See https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
1515
# for available Python versions on ubuntu
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-22.04
1717
strategy:
1818
matrix:
1919
# see https://www.python.org/downloads/
20-
python-version: [ '3.6', '3.12' ]
20+
python-version: [ '3.7', '3.12' ]
2121

2222
steps:
2323
- uses: actions/checkout@v4

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![PyPI](https://img.shields.io/pypi/v/aspose-barcode-cloud)](https://pypi.org/project/aspose-barcode-cloud/)
66

77
- API version: 4.0
8-
- Package version: 25.3.0
8+
- Package version: 25.4.0
99

1010
## SDK and API Version Compatibility:
1111

@@ -26,7 +26,7 @@ This repository contains Aspose.BarCode Cloud SDK for Python source code. This S
2626

2727
Supported Python versions:
2828

29-
- Python 3.6+
29+
- Python 3.7+
3030

3131
To use these SDKs, you will need Client Id and Client Secret which can be looked up at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/applications) (free registration in Aspose Cloud is required for this).
3232

aspose_barcode_cloud/api_client.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ def __init__(self, configuration=None, header_name=None, header_value=None, cook
6060
self.rest_client = RESTClientObject(configuration)
6161
self.default_headers = {
6262
"x-aspose-client": "python sdk",
63-
"x-aspose-client-version": "25.3.0",
63+
"x-aspose-client-version": "25.4.0",
6464
}
6565
if header_name is not None:
6666
self.default_headers[header_name] = header_value
6767
self.cookie = cookie
6868
# Set default User-Agent.
69-
self.user_agent = "Aspose-Barcode-SDK/25.3.0/python"
69+
self.user_agent = "Aspose-Barcode-SDK/25.4.0/python"
7070

7171
def __del__(self):
7272
self.rest_client.close()

aspose_barcode_cloud/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def to_debug_report(self):
258258
"OS: {env}\n"
259259
"Python Version: {pyversion}\n"
260260
"Version of the API: 4.0\n"
261-
"SDK Package Version: 25.3.0".format(env=sys.platform, pyversion=sys.version)
261+
"SDK Package Version: 25.4.0".format(env=sys.platform, pyversion=sys.version)
262262
)
263263

264264
@staticmethod

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup, find_packages
66

77
NAME = "aspose-barcode-cloud"
8-
VERSION = "25.3.0"
8+
VERSION = "25.4.0"
99
# To install the library, run the following
1010
#
1111
# python setup.py install

0 commit comments

Comments
 (0)