Skip to content

Commit f99a60e

Browse files
committed
REL: exclude gitarchive.cfg from package files
- move gitarchive.cfg to repository root - exclude it from source distribution tarball - exclude it from installation with package data - fix test for expanded .gitarchive.cfg in setup.py
1 parent 4a88e7a commit f99a60e

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed
File renamed without changes.

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
/conda-recipe/ export-ignore
55
/devutils export-ignore
66
/doc export-ignore
7-
gitarchive.cfg export-subst
7+
.gitarchive.cfg export-subst

MANIFEST.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ recursive-include src *
22
include SConstruct
33
include AUTHORS.txt LICENSE*.txt README.rst
44
recursive-exclude src *.pyc *.so
5-
global-exclude .gitattributes .gitignore .DS_Store
5+
global-exclude .gitattributes .gitignore .gitarchive.cfg
6+
global-exclude .DS_Store
67

78
# Avoid user content in setup.cfg to make distribution reproducible.
89
exclude setup.cfg

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def create_extensions():
7777
# It must reside in the same directory as version.py.
7878
MYDIR = os.path.dirname(os.path.abspath(__file__))
7979
versioncfgfile = os.path.join(MYDIR, 'src/pyobjcryst/version.cfg')
80-
gitarchivecfgfile = versioncfgfile.replace('version.cfg', 'gitarchive.cfg')
80+
gitarchivecfgfile = os.path.join(MYDIR, '.gitarchive.cfg')
8181

8282

8383
def gitinfo():
@@ -103,7 +103,7 @@ def getversioncfg():
103103
g = vd0.copy()
104104
cp0 = RawConfigParser(vd0)
105105
cp0.read(gitarchivecfgfile)
106-
if '$Format:' not in cp0.get('DEFAULT', 'commit'):
106+
if len(cp0.get('DEFAULT', 'commit')) > 20:
107107
g = cp0.defaults()
108108
mx = re.search(r'\btag: v(\d[^,]*)', g.pop('refnames'))
109109
if mx:

0 commit comments

Comments
 (0)