Skip to content

Commit ca22969

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 b5742aa. * 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 f37d4cf commit ca22969

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

packages/google-cloud-bigtable/nox.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
import nox
1919

2020

21+
LOCAL_DEPS = ('../core/',)
22+
23+
2124
@nox.session
2225
@nox.parametrize('python_version', ['2.7', '3.4', '3.5', '3.6'])
2326
def unit_tests(session, python_version):
@@ -27,7 +30,7 @@ def unit_tests(session, python_version):
2730
session.interpreter = 'python{}'.format(python_version)
2831

2932
# Install all test dependencies, then install this package in-place.
30-
session.install('mock', 'pytest', 'pytest-cov', '../core/')
33+
session.install('mock', 'pytest', 'pytest-cov', *LOCAL_DEPS)
3134
session.install('-e', '.')
3235

3336
# Run py.test against the unit tests.
@@ -52,8 +55,8 @@ def system_tests(session, python_version):
5255

5356
# Install all test dependencies, then install this package into the
5457
# virutalenv's dist-packages.
55-
session.install('mock', 'pytest',
56-
'../core/', '../test_utils/')
58+
session.install('mock', 'pytest', *LOCAL_DEPS)
59+
session.install('../test_utils/')
5760
session.install('.')
5861

5962
# Run py.test against the system tests.
@@ -68,7 +71,7 @@ def lint(session):
6871
serious code quality issues.
6972
"""
7073
session.interpreter = 'python3.6'
71-
session.install('flake8')
74+
session.install('flake8', *LOCAL_DEPS)
7275
session.install('.')
7376
session.run('flake8', 'google/cloud/bigtable')
7477

packages/google-cloud-bigtable/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

5253
REQUIREMENTS = [
53-
'google-cloud-core >= 0.23.1, < 0.24dev',
54+
'google-cloud-core >= 0.24.0, < 0.25dev',
5455
'google-gax>=0.15.7, <0.16dev',
5556
]
5657

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

0 commit comments

Comments
 (0)