From 9546f90c10f4cb5069b83fbcceceb9640fd01933 Mon Sep 17 00:00:00 2001 From: Brian Schubert Date: Fri, 29 Dec 2023 13:47:45 -0500 Subject: [PATCH] Temporarily disable version check in Windows --- .github/workflows/release.yaml | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c75bc17..fff0496 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -64,6 +64,8 @@ jobs: exit [int]$($output -notmatch 'Requirement already satisfied: 6s-bin') - name: Verify that installed distribution version matches tag + # TODO find fix for double-quotes being stripped when the below command is run in PowerShell. + if: ${{ !contains(matrix.os, 'windows') }} run: > python -c 'import packaging.version; import sixs_bin; diff --git a/pyproject.toml b/pyproject.toml index b425723..10c74d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "6s-bin" -version = "0.10.1rc6" +version = "0.10.1rc7" description = "Compiled binaries for the 6S Radiative Transfer Model exposed as package resources." license = "Apache-2.0" authors = ["Brian Schubert "]