Skip to content

Commit 9c20e99

Browse files
authored
Update testbed and bump version number (#38)
1 parent 6ea19dd commit 9c20e99

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ We are working to support more App Engine bundled service APIs for Python 3. To
1313

1414
In your `requirements.txt` file, add the following:
1515

16-
`appengine-python-standard>=0.2.3`
16+
`appengine-python-standard>=0.2.4`
1717

1818
In your app's `app.yaml`, add the following:
1919

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.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,
@@ -15,6 +15,7 @@
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",

src/google/appengine/ext/testbed/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,10 @@ def testInsertEntity(self):
110110
import sys
111111
import threading
112112

113-
from absl import flags
113+
114+
115+
116+
114117
import attr
115118
from google.appengine.api import apiproxy_stub
116119
from google.appengine.api import apiproxy_stub_map

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ setenv =
1010
usedevelop = true
1111
deps =
1212
absl-py
13+
attrs
1314
freezegun
1415
pyasn1
1516
pyasn1-modules
@@ -25,7 +26,7 @@ deps =
2526
protobuf
2627
pytz
2728
requests
28-
ruamel.yaml
29+
ruamel.yaml<0.16.0
2930
six
3031
urllib3
3132
commands = pytest --cov=google.appengine {posargs}

0 commit comments

Comments
 (0)