Skip to content

Commit 59d1c36

Browse files
authored
Revert "feat: add python 3.11 testing (GoogleCloudPlatform#8872)" (GoogleCloudPlatform#8995)
This reverts commit 66e069f.
1 parent 72d3b58 commit 59d1c36

54 files changed

Lines changed: 56 additions & 205 deletions

File tree

Some content is hidden

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

.kokoro/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ RUN set -ex \
117117
&& export GNUPGHOME="$(mktemp -d)" \
118118
&& echo "disable-ipv6" >> "${GNUPGHOME}/dirmngr.conf" \
119119
&& /tmp/fetch_gpg_keys.sh \
120-
&& for PYTHON_VERSION in 2.7.18 3.7.16 3.8.16 3.9.16 3.10.9 3.11.1; do \
120+
&& for PYTHON_VERSION in 2.7.18 3.7.12 3.8.13 3.9.13 3.10.5 3.11.1; do \
121121
wget --no-check-certificate -O python-${PYTHON_VERSION}.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \
122122
&& wget --no-check-certificate -O python-${PYTHON_VERSION}.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \
123123
&& gpg --batch --verify python-${PYTHON_VERSION}.tar.xz.asc python-${PYTHON_VERSION}.tar.xz \

.kokoro/python3.11/common.cfg

Lines changed: 0 additions & 66 deletions
This file was deleted.

.kokoro/python3.11/continuous.cfg

Lines changed: 0 additions & 21 deletions
This file was deleted.

.kokoro/python3.11/periodic.cfg

Lines changed: 0 additions & 32 deletions
This file was deleted.

.kokoro/python3.11/presubmit.cfg

Lines changed: 0 additions & 21 deletions
This file was deleted.

MAC_SETUP.md

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -76,25 +76,21 @@ test their code.
7676
```console
7777
$ pyenv install 3.6.13
7878
```
79-
* 3.7.16 (latest 3.7.x release)
79+
* 3.7.13 (latest 3.7.x release)
8080
```console
81-
$ pyenv install 3.7.16
81+
$ pyenv install 3.7.13
8282
```
83-
* 3.8.16 (latest 3.8.x release)
83+
* 3.8.13 (latest 3.8.x release)
8484
```console
85-
$ pyenv install 3.8.16
85+
$ pyenv install 3.8.13
8686
```
87-
* 3.9.16 (latest 3.9.x release)
87+
* 3.9.12 (latest 3.9.x release)
8888
```console
89-
$ pyenv install 3.9.16
89+
$ pyenv install 3.9.12
9090
```
91-
* 3.10.9 (latest 3.10.x release)
91+
* 3.10.4 (latest 3.10.x release)
9292
```console
93-
$ pyenv install 3.10.9
94-
```
95-
* 3.11.1 (latest 3.11.x release)
96-
```console
97-
$ pyenv install 3.11.1
93+
$ pyenv install 3.10.4
9894
```
9995
10096
> ℹ️ *Note*: If you are using an M1 Mac,

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Python samples for [Google Cloud Platform products][cloud].
44

5-
[![Build Status][py-2.7-shield]][py-2.7-link] [![Build Status][py-3.7-shield]][py-3.7-link] [![Build Status][py-3.8-shield]][py-3.8-link] [![Build Status][py-3.9-shield]][py-3.9-link] [![Build Status][py-3.10-shield]][py-3.10-link] [![Build Status][py-3.11-shield]][py-3.11-link]
5+
[![Build Status][py-2.7-shield]][py-2.7-link] [![Build Status][py-3.7-shield]][py-3.7-link] [![Build Status][py-3.8-shield]][py-3.8-link] [![Build Status][py-3.9-shield]][py-3.9-link] [![Build Status][py-3.10-shield]][py-3.10-link]
66

77
## Google Cloud Samples
88

@@ -77,5 +77,3 @@ Contributions welcome! See the [Contributing Guide](CONTRIBUTING.md).
7777
[py-3.9-link]: https://storage.googleapis.com/cloud-devrel-public/python-docs-samples/badges/py-3.9.html
7878
[py-3.10-shield]: https://storage.googleapis.com/cloud-devrel-public/python-docs-samples/badges/py-310.svg
7979
[py-3.10-link]: https://storage.googleapis.com/cloud-devrel-public/python-docs-samples/badges/py-3.10.html
80-
[py-3.11-shield]: https://storage.googleapis.com/cloud-devrel-public/python-docs-samples/badges/py-311.svg
81-
[py-3.11-link]: https://storage.googleapis.com/cloud-devrel-public/python-docs-samples/badges/py-3.11.html
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Django==4.0.4; python_version >= '3.8'
22
Django==3.2.14; python_version < '3.8'
33
gunicorn==20.1.0
4-
psycopg2-binary==2.9.5
4+
psycopg2-binary==2.9.4
55
django-environ==0.9.0
66
google-cloud-secret-manager==2.12.0
77
django-storages[google]==1.13

appengine/flexible/scipy/noxfile_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
TEST_CONFIG_OVERRIDE = {
2424
# You can opt out from the test for specific Python versions.
25-
"ignored_versions": ["2.7", "3.6", "3.11"],
25+
"ignored_versions": ["2.7", "3.6"],
2626
# Old samples are opted out of enforcing Python type hints
2727
# All new samples should feature them
2828
"enforce_type_hints": False,

appengine/flexible/scipy/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ imageio==2.14.0
55
numpy==1.22.0; python_version > "3.7"
66
numpy==1.21.4; python_version <= "3.7"
77
pillow==9.2.0
8-
scipy==1.10.0; python_version > "3.7"
8+
scipy==1.8.0; python_version > "3.7"
99
scipy==1.7.3; python_version <= "3.7"

0 commit comments

Comments
 (0)