Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev/archery/archery/crossbow/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ def get_version(root, **kwargs):
if 'dev' not in tag:
major += 1

return "{}.{}.{}.dev{}".format(major, minor, patch, version.distance)
return "{}.{}.{}.dev{}".format(major, minor, patch, version.distance or 0)

@kszucs kszucs Jan 20, 2022

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably due to the release branch: the latest tag on the release branch is not reachable from the PR's master's HEAD commit.



class Serializable:
Expand Down
1 change: 1 addition & 0 deletions dev/release/verify-release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ setup_miniconda() {
echo "Installed miniconda at ${MINICONDA}"

. $MINICONDA/etc/profile.d/conda.sh
conda activate base

@kszucs kszucs Jan 20, 2022

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On macOS I had to activate the base conda environment before using mamba.


# Dependencies from python/requirements-build.txt and python/requirements-test.txt
# with the exception of oldest-supported-numpy since it doesn't have a conda package
Expand Down