File tree 3 files changed +7
-6
lines changed
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,11 @@ pandas (0.18.1+git25-ga7469cf-1) unstable; urgency=medium
3
3
* New upstream snapshot from v0.19.0rc1-25-ga7469cf
4
4
* debian/patches
5
5
- dropped changeset_ and up_ patches adopted upstream, refreshed the rest
6
+ * debian/rules,patches
7
+ - save debian-based version into __version.py, so doesn't conflict with
8
+ upstream tests of public API
6
9
7
- -- Yaroslav Halchenko <
[email protected] > Tue, 20 Sep 2016
13:13 :17 -0400
10
+ -- Yaroslav Halchenko <
[email protected] > Tue, 20 Sep 2016
22:31 :17 -0400
8
11
9
12
pandas (0.18.1-1) unstable; urgency=medium
10
13
Original file line number Diff line number Diff line change 8
8
-v = get_versions()
9
9
-__version__ = v.get('closest-tag',v['version'])
10
10
-del get_versions, v
11
- +from .version import version as __version__
11
+ +from .__version import version as __version__
Original file line number Diff line number Diff line change @@ -79,12 +79,10 @@ override_dh_clean: clean_generated
79
79
[ " $( UVER) " = " ` cat debian/cythonized-files/VERSION` " ]
80
80
rm -rf build doc/_build * -stamp # pandas.egg-info pandas/datasets/__config__.py
81
81
dh_clean
82
- : # prune auto-generated version.py -- will be generated during build again
83
- rm -f pandas/version.py
84
82
85
83
version_py :
86
- [ -e pandas/version .py ] || \
87
- echo -e "version = '$(UVER_PY)'\nshort_version = '$(UVER_PYSHORT)'" > pandas/version .py
84
+ [ -e pandas/__version .py ] || \
85
+ echo -e "version = '$(UVER_PY)'\nshort_version = '$(UVER_PYSHORT)'" > pandas/__version .py
88
86
89
87
override_dh_auto_build : version_py
90
88
# Override default build operation which --force's re-cythonization
You can’t perform that action at this time.
0 commit comments