Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Unidata/MetPy
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9c5ff019c9f7ed830303604652d0722141c9637f
Choose a base ref
..
head repository: Unidata/MetPy
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3e804623ceab6f15d192413dc2c41699670ab31c
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 .github/actions/build-docs/action.yml
2 changes: 1 addition & 1 deletion .github/actions/build-docs/action.yml
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ runs:
- name: Set doc version
id: docversion
shell: bash -l {0}
run: echo "doc_version=$(python -c 'import importlib.metadata,os,re; print(re.search(r"(\d+\.\d+)", importlib.metadata.distribution(os.environ["GITHUB_REPOSITORY"].split("/")[-1].lower()).version)[0])')" >> $GITHUB_OUTPUT
run: echo "doc_version=$(python -c 'import importlib.metadata,os,re; print(re.search(r"(\d+\.\d+)", importlib.metadata.version(os.environ["GITHUB_REPOSITORY"].split("/")[-1].lower()))[0])')" >> $GITHUB_OUTPUT

- name: Show doc version
shell: bash -l {0}