Skip to content

Commit 8b8d2c3

Browse files
Merge pull request #81 from dragonyanglong/try_manual_pip_rel
Release with doc folder
2 parents 2c6a056 + db56bc2 commit 8b8d2c3

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ exclude .coveragerc
2020
exclude .travis*
2121
prune conda-recipe
2222
prune devutils
23-
prune doc
23+
#prune doc

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# Use this version when git data are not available, like in git zip archive.
1717
# Update when tagging a new release.
18-
FALLBACK_VERSION = '1.4.0'
18+
FALLBACK_VERSION = '1.4.2'
1919

2020
# determine if we run with Python 3.
2121
PY3 = (sys.version_info[0] == 3)

src/diffpy/pdfgui/gui/pdfguiglobals.py

+5
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@ def iconpath(iconfilename):
5959
Return string.
6060
"""
6161
rv = os.path.join(APPDATADIR, 'icons', iconfilename)
62+
print("APPDATADIR")
63+
print(APPDATADIR)
64+
print("rv")
65+
print(rv)
66+
print(os.path.isfile(rv))
6267
assert os.path.isfile(rv), "icon file does not exist"
6368
return rv
6469

0 commit comments

Comments
 (0)