Skip to content

Commit 890270a

Browse files
committed
Bump version to 1.7.0
1 parent 2904a1b commit 890270a

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

bigquery/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import absolute_import
22

3-
__version__ = '1.6.0'
3+
__version__ = '1.7.0'
44

55
from .client import get_client
66
from .client import (

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
from setuptools import find_packages
22
from setuptools import setup
3-
4-
VERSION = '1.6.0'
3+
from bigquery import __version__
54

65
setup_args = dict(
76
name='BigQuery-Python',
87
description='Simple Python client for interacting with Google BigQuery.',
98
url='https://github.com/tylertreat/BigQuery-Python',
10-
version=VERSION,
9+
version=__version__,
1110
license='Apache',
1211
packages=find_packages(),
1312
include_package_data=True,

0 commit comments

Comments
 (0)