Skip to content

Commit e313784

Browse files
authored
Merge pull request #542 from SumoSourabh/CP-11887
CP-11887 Merge Python 3.11 changes to master from develop branch
2 parents 0a08915 + 76c821c commit e313784

File tree

45 files changed

+425
-437
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+425
-437
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.1.0
2+
current_version = 5.0.0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?

.github/workflows/pre-commit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ on:
1313
- release
1414

1515
jobs:
16-
pytest38:
17-
name: Test ${{ matrix.package }} on ${{ matrix.os }} using pytest (Python 3.8)
16+
pytest311:
17+
name: Test ${{ matrix.package }} on ${{ matrix.os }} using pytest (Python 3.11)
1818
runs-on: ${{ matrix.os }}
1919
strategy:
2020
max-parallel: 4
2121
matrix:
22-
python-version: [ 3.8 ]
22+
python-version: [ 3.11 ]
2323
os: [ ubuntu-latest, macos-latest, windows-latest ]
2424
package: [ common, libs, platform, tools ]
2525

.github/workflows/publish-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: [ 3.8 ]
23+
python-version: [ 3.11 ]
2424
package: [ docs ]
2525
repository: [ 'delphix/virtualization-sdk' ]
2626

.github/workflows/publish-python-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
max-parallel: 5
1919
matrix:
20-
python-version: [3.8]
20+
python-version: [3.11]
2121
package: [common, dvp, libs, platform, tools]
2222

2323
steps:

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ The latest user documentation can be found [here](https://developer.delphix.com)
1111

1212
- macOS 10.14+, Ubuntu 16.04+, or Windows 10
1313
- Python 2.7 (vSDK 3.1.0 and earlier)
14-
- Python 3.8 (vSDK 4.0.0 and later)
14+
- Python 3.8 (vSDK 4.1.0 and earlier)
15+
- Python 3.11 (vSDK 5.0.0 and later)
1516
- Java 7+
1617
- A Delphix Engine of an [appropriate version](/References/Version_Compatibility.md)
1718

common/setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ long_description_content_type: text/markdown
1212
classifiers:
1313
Development Status :: 5 - Production/Stable
1414
Programming Language :: Python
15-
Programming Language :: Python :: 3.8
15+
Programming Language :: Python :: 3.11
1616
License :: OSI Approved :: Apache Software License
1717
Operating System :: OS Independent
1818

1919
[options]
20-
requires_python: >=3.8, <3.9
20+
requires_python: >=3.11, <3.12

common/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
PYTHON_SRC = 'src/main/python'
55

66
install_requires = [
7-
"dvp-api == 1.8.0",
7+
"dvp-api == 1.9.0",
88
"six >= 1.16, < 1.17",
99
]
1010

@@ -16,5 +16,5 @@
1616
install_requires=install_requires,
1717
package_dir={'': PYTHON_SRC},
1818
packages=setuptools.find_packages(PYTHON_SRC),
19-
python_requires='>=3.8, <3.9',
19+
python_requires='>=3.11, <3.12',
2020
)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.1.0
1+
5.0.0

docs/Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ markdown-include = "==0.8.1"
1010
mkdocs-awesome-pages-plugin = "==2.9.1"
1111

1212
[requires]
13-
python_version = "3.8"
13+
python_version = "3.11"
1414

1515
[dev-packages]

docs/Pipfile.lock

Lines changed: 320 additions & 360 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)