Skip to content

Commit cdf5355

Browse files
authored
chore: drop support for py36 (canonical#419)
Remove references to py36 and adopt py38 (the one in focal) as the minimal supported python. Fixes canonicalGH-418
1 parent 3752add commit cdf5355

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1!9.3.3
1+
1!10.0.0

docs/design.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Logging for paramiko, used for SSH communication, is restricted to warning level
4949
Python Support
5050
==============
5151

52-
pycloudlib currently supports Python 3.6 and above.
52+
pycloudlib currently supports Python 3.8 and above.
5353

5454
pycloudlib minimum supported Python version will adhere to the Python version of the oldest
5555
`Ubuntu Version with Standard Support <https://wiki.ubuntu.com/Releases>`_.
@@ -62,7 +62,7 @@ The following table lists the Python version supported in each Ubuntu LTS releas
6262
============== ==============
6363
Ubuntu Version Python version
6464
============== ==============
65-
18.04 LTS 3.6
6665
20.04 LTS 3.8
6766
22.04 LTS 3.10
67+
24.04 LTS 3.12
6868
============== ==============

setup.cfg

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ classifiers =
1919
Topic :: Utilities
2020

2121
[options]
22-
python_requires = >=3.6
22+
python_requires = >=3.8
2323
packages = find:
2424
zip_safe = True
2525
install_requires =
@@ -32,11 +32,9 @@ install_requires =
3232
botocore >= 1.17.20
3333
google-cloud-compute
3434
googleapis-common-protos == 1.63.1 # Fixes dependency issue with google-cloud-compute and the pinned version of protobuf
35-
ibm-cloud-sdk-core == 3.14.0;python_version=='3.6'
36-
ibm-cloud-sdk-core >= 3.14.0;python_version>='3.7'
35+
ibm-cloud-sdk-core >= 3.14.0
3736
ibm-platform-services
38-
ibm-vpc == 0.10;python_version=='3.6'
39-
ibm-vpc >= 0.10;python_version>='3.7'
37+
ibm-vpc >= 0.10
4038
knack >= 0.7.1
4139
oci >= 2.17.0
4240
openstacksdk >= 1.1.0, < 1.5.0

0 commit comments

Comments
 (0)