Skip to content

Commit d155d13

Browse files
GA and Beta Promotions (#3245)
* Make clients explicitly unpickleable. Closes #3211. * Make clients explicitly unpickleable. Closes #3211. * Add GA designator, add 1.0 version numbers. * Version changes. Eep. * Oops, Speech is still alpha. * 0.24.0, not 0.24.1 * Remove double __getstate__ goof. * Version changes. Eep. * Oops, Speech is still alpha. * Remove double __getstate__ goof. * Adding 3.6 classifier where missing and fixing bad versions. Done via "git grep '0\.24'" and "git grep '0\.23'". * Fix Noxfiles forlocal packages. * Fixing copy-pasta issue in error reporting nox config. Also fixing bad indent in same file. * Depend on stable logging in error reporting package. * Fixing lint errors in error_reporting. These were masked because error_reporting's lint nox session was linting the datastore codebase. This also means that the error reporting package has gained __all__. * Fixing a syntax error in nox config for logging. Also fixing an indent error while I was in there. * Revert "Add docs for 'result_index' usage and a system test." This reverts commit ea8d8d85da0af8720ee919313d61df626acb9103. * Fixing docs nox session for umbrella package. Two issues: - error_reporting came BEFORE logging (which means it would try to pull in a logging dep from PyPI that doesn't exist) - dns was NOT in the list of local packages * Updating upper bound on logging in error_reporting. * Un-revert typo fix.
1 parent 73329bf commit d155d13

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

packages/google-cloud-speech/nox.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
import nox
2020

2121

22+
LOCAL_DEPS = ('../core/',)
23+
24+
2225
@nox.session
2326
@nox.parametrize('python_version', ['2.7', '3.4', '3.5', '3.6'])
2427
def unit_tests(session, python_version):
@@ -28,7 +31,7 @@ def unit_tests(session, python_version):
2831
session.interpreter = 'python{}'.format(python_version)
2932

3033
# Install all test dependencies, then install this package in-place.
31-
session.install('mock', 'pytest', 'pytest-cov', '../core/')
34+
session.install('mock', 'pytest', 'pytest-cov', *LOCAL_DEPS)
3235
session.install('-e', '.')
3336

3437
# Run py.test against the unit tests.
@@ -53,9 +56,8 @@ def system_tests(session, python_version):
5356

5457
# Install all test dependencies, then install this package into the
5558
# virutalenv's dist-packages.
56-
session.install('mock', 'pytest',
57-
'../core/', '../test_utils/',
58-
'../storage/')
59+
session.install('mock', 'pytest', *LOCAL_DEPS)
60+
session.install('../test_utils/', '../storage/')
5961
session.install('.')
6062

6163
# Run py.test against the system tests.
@@ -70,7 +72,7 @@ def lint(session):
7072
serious code quality issues.
7173
"""
7274
session.interpreter = 'python3.6'
73-
session.install('flake8')
75+
session.install('flake8', *LOCAL_DEPS)
7476
session.install('.')
7577
session.run('flake8', 'google/cloud/speech')
7678

packages/google-cloud-speech/setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,20 @@
4444
'Programming Language :: Python :: 3',
4545
'Programming Language :: Python :: 3.4',
4646
'Programming Language :: Python :: 3.5',
47+
'Programming Language :: Python :: 3.6',
4748
'Topic :: Internet',
4849
],
4950
}
5051

5152
REQUIREMENTS = [
52-
'google-cloud-core >= 0.23.1, < 0.24dev',
53+
'google-cloud-core >= 0.24.0, < 0.25dev',
5354
'grpcio >= 1.0.2, < 2.0dev',
5455
'gapic-google-cloud-speech-v1beta1 >= 0.15.2, < 0.16dev',
5556
]
5657

5758
setup(
5859
name='google-cloud-speech',
59-
version='0.23.0',
60+
version='0.24.0',
6061
description='Python Client for Google Cloud Speech',
6162
long_description=README,
6263
namespace_packages=[

0 commit comments

Comments
 (0)