Skip to content

Commit f8234bf

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 1a49652 commit f8234bf

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

packages/google-cloud-monitoring/nox.py

Lines changed: 7 additions & 4 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,8 +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/')
59+
session.install('mock', 'pytest', *LOCAL_DEPS)
60+
session.install('../test_utils/')
5861
session.install('.')
5962

6063
# Run py.test against the system tests.
@@ -69,7 +72,7 @@ def lint(session):
6972
serious code quality issues.
7073
"""
7174
session.interpreter = 'python3.6'
72-
session.install('flake8')
75+
session.install('flake8', *LOCAL_DEPS)
7376
session.install('.')
7477
session.run('flake8', 'google/cloud/monitoring')
7578

packages/google-cloud-monitoring/setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,19 @@
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
]
5556

5657
setup(
5758
name='google-cloud-monitoring',
58-
version='0.23.0',
59+
version='0.24.0',
5960
description='Python Client for Stackdriver Monitoring',
6061
long_description=README,
6162
namespace_packages=[

0 commit comments

Comments
 (0)