We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 752e9a1 commit 163c121Copy full SHA for 163c121
pandas_gbq/__init__.py
@@ -1 +1,7 @@
1
from .gbq import to_gbq, read_gbq # noqa
2
+
3
+# use the closest tagged version if possible
4
+from ._version import get_versions
5
+v = get_versions()
6
+__version__ = v.get('closest-tag', v['version'])
7
+del get_versions, v
release-procedure.md
@@ -0,0 +1,19 @@
+* Tag commit
+ git tag -a x.x.x -m 'Version x.x.x'
+* and push to github
+ git push pandas-gbq master --tags
8
9
+* Upload to PyPI
10
11
+ git clean -xfd
12
+ python setup.py register sdist bdist_wheel --universal
13
+ twine upload dist/*
14
15
+* Update anaconda recipe.
16
17
+ This should happen automatically within a day or two.
18
19
+* Update conda recipe feedstock on `conda-forge <https://conda-forge.github.io/>`_.
0 commit comments