Skip to content

Commit

Permalink
Fix indentation error in release version check
Browse files Browse the repository at this point in the history
  • Loading branch information
brianschubert committed Dec 29, 2023
1 parent 6cf1c41 commit 2fc75e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ jobs:
- name: Verify that installed distribution version matches tag
run: >
python -c '
import packaging.version;
python -c 'import packaging.version;
import sixs_bin;
installed_version = packaging.version.parse(sixs_bin.__version__);
expected_version = packaging.version.parse("${{ github.ref }}".split("/")[-1].removeprefix("v"));
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "6s-bin"
version = "0.10.1rc5"
version = "0.10.1rc6"
description = "Compiled binaries for the 6S Radiative Transfer Model exposed as package resources."
license = "Apache-2.0"
authors = ["Brian Schubert <schubert.b@northeastern.edu>"]
Expand Down

0 comments on commit 2fc75e6

Please sign in to comment.