Skip to content

Commit d4daaf4

Browse files
authored
fix(deps): require python 3.6 (#46)
`google-cloud-access-context-manager` is a proto only package that is only used by `google-cloud-asset`. The last version of `google-cloud-asset` that supports python 2.7 is `1.3.0`. See the [setup.py of version 1.3.0 here](https://github.com/googleapis/python-asset/blob/v1.3.0/setup.py#L34). In version `1.3.0` of `python-asset`, the version of `google-cloud-access-context-manager` that is required has an upper bound of `< 0.2.0dev`. Assuming that the SemVer minor version of `google-cloud-access-context-manager` increases after this PR, this change should not break users that are still on `python-asset` version `1.3.0`.
1 parent f0adcb9 commit d4daaf4

File tree

1 file changed

+2
-2
lines changed
  • packages/google-cloud-access-context-manager

1 file changed

+2
-2
lines changed

packages/google-cloud-access-context-manager/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,18 +62,18 @@
6262
"License :: OSI Approved :: Apache Software License",
6363
"Programming Language :: Python",
6464
"Programming Language :: Python :: 3",
65-
"Programming Language :: Python :: 3.5",
6665
"Programming Language :: Python :: 3.6",
6766
"Programming Language :: Python :: 3.7",
6867
"Programming Language :: Python :: 3.8",
68+
"Programming Language :: Python :: 3.9",
6969
"Operating System :: OS Independent",
7070
"Topic :: Internet",
7171
],
7272
platforms="Posix; MacOS X; Windows",
7373
packages=packages,
7474
namespace_packages=namespaces,
7575
install_requires=dependencies,
76-
python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
76+
python_requires=">=3.6",
7777
include_package_data=True,
7878
zip_safe=False,
7979
)

0 commit comments

Comments
 (0)