From c4ab1fef9b90cd420bbc8fccb22741b59195b079 Mon Sep 17 00:00:00 2001 From: slush Date: Wed, 5 Jun 2024 00:33:43 -0500 Subject: [PATCH 1/2] feat: enables windows CI tests after confirming they run locally on powershell --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8128060..1cbf920 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -60,7 +60,7 @@ jobs: strategy: matrix: - os: [ubuntu-latest, macos-latest] # eventually add `windows-latest` + os: [ubuntu-latest, macos-latest, windows-latest] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: From 0429b8bd811c08d1593086e50d01521a8aaa84f6 Mon Sep 17 00:00:00 2001 From: slush Date: Mon, 10 Jun 2024 00:22:08 -0500 Subject: [PATCH 2/2] chore: adds windows OS classifier to pyproject.toml --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 11b5576..df2c657 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,7 @@ classifiers = [ "Natural Language :: English", "Operating System :: MacOS", "Operating System :: POSIX", + "Operating System :: Microsoft :: Windows", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",