Skip to content
This repository was archived by the owner on Jan 23, 2024. It is now read-only.

Commit b97ce3f

Browse files
jasonborgcopybara-github
authored andcommitted
Document Python 3.8 support.
PiperOrigin-RevId: 283380219 Change-Id: I5a8b88706fa53343525a39e4625ce4a7f91f1ca2
1 parent 19b1147 commit b97ce3f

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Python Cloud Debugger Agent
22

3-
Google [Cloud Debugger](https://cloud.google.com/debugger/) for Python 2.7 and
4-
3.7 (experimental support)
3+
Google [Cloud Debugger](https://cloud.google.com/debugger/) for Python 2.7, and
4+
with experimental support for Python 3.6, Python 3.7 and Python 3.8.
55

66
## Overview
77

@@ -27,8 +27,8 @@ tested on Debian Linux, but it should work on other distributions as well.
2727

2828
Cloud Debugger consists of 3 primary components:
2929

30-
1. The Python debugger agent (this repo implements one for CPython 2.7, and an
31-
experimental one for CPython 3.7).
30+
1. The Python debugger agent (this repo implements one for CPython 2.7, and
31+
experimental ones for CPython 3.6, 3.7 and 3.8).
3232
2. Cloud Debugger service storing and managing snapshots/logpoints. Explore the
3333
APIs using
3434
[APIs Explorer](https://developers.google.com/apis-explorer/#p/clouddebugger/v2/).
@@ -82,12 +82,13 @@ sudo apt-get -y -q --no-install-recommends install \
8282

8383
### Python 3
8484

85-
There is experimental support for Python 3.6 and Python 3.7. Python 3.0 to 3.5
86-
are not supported, and newer versions have not been tested.
85+
There is experimental support for Python 3.6, Python 3.7 and Python 3.8. Python
86+
3.0 to 3.5 are not supported, and newer versions have not been tested.
8787

88-
To build, the `python3.7` and `python3.7-dev` packages are additionally needed.
89-
If Python 3.7 is not the default version of the 'python' command on your system,
90-
run the build script as `PYTHON=python3.7 ./build.sh`.
88+
To build for Python 3.x (x in [6-8]), the `python3.x` and `python3.x-dev`
89+
packages are additionally needed. If Python 3.x is not the default version of
90+
the 'python' command on your system, run the build script as `PYTHON=python3.x
91+
./build.sh`.
9192

9293
### Alpine Linux
9394

src/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ def ReadConfig(section, value, default):
121121
'Programming Language :: Python :: 2.7',
122122
'Programming Language :: Python :: 3.6',
123123
'Programming Language :: Python :: 3.7',
124+
'Programming Language :: Python :: 3.8',
124125
'Development Status :: 3 - Alpha',
125126
'Intended Audience :: Developers',
126127
])

0 commit comments

Comments
 (0)