Skip to content

Commit

Permalink
Prepare for 3.11.4 and fix python release action version (#70)
Browse files Browse the repository at this point in the history
* Python has to be pinned in release action too

* And regenerate
  • Loading branch information
philcluff authored Nov 6, 2023
1 parent 10a3eb2 commit d896eab
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install Python 3.x
uses: actions/setup-python@v1
with:
python-version: '3.x'
python-version: '3.11.x'
#
- name: Install Python Dependencies
run: python setup.py install
Expand Down
2 changes: 1 addition & 1 deletion gen/generator-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"packageName": "mux_python",
"projectName": "mux_python",
"licenseInfo" : "MIT",
"packageVersion": "3.11.3"
"packageVersion": "3.11.4"
}
2 changes: 1 addition & 1 deletion mux_python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

from __future__ import absolute_import

__version__ = "3.11.3"
__version__ = "3.11.4"

# import apis into sdk package
from mux_python.api.assets_api import AssetsApi
Expand Down
2 changes: 1 addition & 1 deletion mux_python/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/3.11.3/python'
self.user_agent = 'OpenAPI-Generator/3.11.4/python'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
2 changes: 1 addition & 1 deletion mux_python/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: v1\n"\
"SDK Package Version: 3.11.3".\
"SDK Package Version: 3.11.4".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from setuptools import setup, find_packages # noqa: H301

NAME = "mux_python"
VERSION = "3.11.3"
VERSION = "3.11.4"
# To install the library, run the following
#
# python setup.py install
Expand Down

0 comments on commit d896eab

Please sign in to comment.