Skip to content

Commit 97e3e78

Browse files
diningPhilosopher64Prabhakar Kumar
authored and
Prabhakar Kumar
committed
v0.6.0 : Dropping support for python 3.7 and adding support for Python 3.11
1 parent 07346f9 commit 97e3e78

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,7 @@ jobs:
4949
fail-fast: false
5050
matrix:
5151
os: [ubuntu-latest, windows-latest, macos-latest]
52-
python-version: ['3.7', '3.8', '3.9', '3.10']
53-
exclude:
54-
- os: windows-latest
55-
# Python 3.7 in Windows does not run successfully
56-
python-version: '3.7'
52+
python-version: ['3.8', '3.9', '3.10', '3.11']
5753
runs-on: ${{ matrix.os }}
5854

5955
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The MATLAB Proxy is under active development. For support or to report issues, s
4747

4848
$ sudo yum install xorg-x11-server-Xvfb
4949
```
50-
* Python versions: **3.7** | **3.8** | **3.9** | **3.10**
50+
* Python versions: **3.8** | **3.9** | **3.10** | **3.11**
5151
* [Browser Requirements](https://www.mathworks.com/support/requirements/browser-requirements.html)
5252

5353
* Supported Operating Systems:

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def run(self):
6565

6666
setuptools.setup(
6767
name="matlab-proxy",
68-
version="0.5.12",
68+
version="0.6.0",
6969
url=config["doc_url"],
7070
author="The MathWorks, Inc.",
7171
author_email="[email protected]",
@@ -86,12 +86,12 @@ def run(self):
8686
"Intended Audience :: Developers",
8787
"Natural Language :: English",
8888
"Programming Language :: Python",
89-
"Programming Language :: Python :: 3.7",
9089
"Programming Language :: Python :: 3.8",
9190
"Programming Language :: Python :: 3.9",
9291
"Programming Language :: Python :: 3.10",
92+
"Programming Language :: Python :: 3.11",
9393
],
94-
python_requires="~=3.7",
94+
python_requires="~=3.8",
9595
install_requires=INSTALL_REQUIRES,
9696
tests_require=TESTS_REQUIRES,
9797
extras_require={"dev": ["aiohttp-devtools", "black"] + TESTS_REQUIRES},

0 commit comments

Comments
 (0)