File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
src/google/appengine/ext/testbed Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ We are working to support more App Engine bundled service APIs for Python 3. To
1313
1414In your ` requirements.txt ` file, add the following:
1515
16- ` appengine-python-standard>=0.2.3 `
16+ ` appengine-python-standard>=0.2.4 `
1717
1818In your app's ` app.yaml ` , add the following:
1919
Original file line number Diff line number Diff line change 55
66setuptools .setup (
77 name = "appengine-python-standard" ,
8- version = "0.2.3 " ,
8+ version = "0.2.4 " ,
99 author = "Google LLC" ,
1010 description = "Google App Engine services SDK for Python 3" ,
1111 long_description = long_description ,
1515 namespace_packages = ["google" ],
1616 package_dir = {"" : "src" },
1717 install_requires = [
18+ "attrs>=21.2.0" ,
1819 "frozendict>=1.2" ,
1920 "google-auth>=1.31.0" ,
2021 "mock>=4.0.3" ,
Original file line number Diff line number Diff line change @@ -110,7 +110,10 @@ def testInsertEntity(self):
110110import sys
111111import threading
112112
113- from absl import flags
113+
114+
115+
116+
114117import attr
115118from google .appengine .api import apiproxy_stub
116119from google .appengine .api import apiproxy_stub_map
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ setenv =
1010usedevelop = true
1111deps =
1212 absl-py
13+ attrs
1314 freezegun
1415 pyasn1
1516 pyasn1-modules
2526 protobuf
2627 pytz
2728 requests
28- ruamel.yaml
29+ ruamel.yaml<0.16.0
2930 six
3031 urllib3
3132commands = pytest --cov =google.appengine {posargs}
You can’t perform that action at this time.
0 commit comments