Skip to content

Commit

Permalink
ARROW-17518: [CI][Doc][Python] Update glob to detect arrow developmen…
Browse files Browse the repository at this point in the history
…t version from git
  • Loading branch information
raulcd committed Aug 25, 2022
1 parent 897c186 commit 07dc54f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dev/archery/archery/crossbow/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ def get_version(root, **kwargs):

# query the calculated version based on the git tags
kwargs['describe_command'] = (
'git describe --dirty --tags --long --match "apache-arrow-[0-9].*"'
'git describe --dirty --tags --long --match "apache-arrow-[0-9]*.*"'
)
version = parse_git_version(root, **kwargs)
tag = str(version.tag)
Expand Down
2 changes: 1 addition & 1 deletion python/pyarrow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def parse_git(root, **kwargs):
"""
from setuptools_scm.git import parse
kwargs['describe_command'] = \
"git describe --dirty --tags --long --match 'apache-arrow-[0-9].*'"
"git describe --dirty --tags --long --match 'apache-arrow-[0-9]*.*'"
return parse(root, **kwargs)
__version__ = setuptools_scm.get_version('../',
parse=parse_git)
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ def parse_git(root, **kwargs):
"""
from setuptools_scm.git import parse
kwargs['describe_command'] =\
'git describe --dirty --tags --long --match "apache-arrow-[0-9].*"'
'git describe --dirty --tags --long --match "apache-arrow-[0-9]*.*"'
return parse(root, **kwargs)


Expand Down

0 comments on commit 07dc54f

Please sign in to comment.