We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2904a1b commit 890270aCopy full SHA for 890270a
bigquery/__init__.py
@@ -1,6 +1,6 @@
1
from __future__ import absolute_import
2
3
-__version__ = '1.6.0'
+__version__ = '1.7.0'
4
5
from .client import get_client
6
from .client import (
setup.py
@@ -1,13 +1,12 @@
from setuptools import find_packages
from setuptools import setup
-
-VERSION = '1.6.0'
+from bigquery import __version__
setup_args = dict(
7
name='BigQuery-Python',
8
description='Simple Python client for interacting with Google BigQuery.',
9
url='https://github.com/tylertreat/BigQuery-Python',
10
- version=VERSION,
+ version=__version__,
11
license='Apache',
12
packages=find_packages(),
13
include_package_data=True,
0 commit comments