From 3678c8878ab8af44ef8ef7f33cf0f485996c6a57 Mon Sep 17 00:00:00 2001 From: Connor Ferster Date: Sat, 15 Jun 2024 22:20:12 -0700 Subject: [PATCH 1/4] chore: try installing with uv for ga testing --- .github/workflows/python-pytest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-pytest.yml b/.github/workflows/python-pytest.yml index 67d4fa8..8509c3a 100644 --- a/.github/workflows/python-pytest.yml +++ b/.github/workflows/python-pytest.yml @@ -26,8 +26,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install flit - flit install + python -m pip install uv + python -m uv pip install . - name: Test black formatted run: | black handcalcs --check From ac90867b5c0e413c48cb84d7d76713bd5065a7c7 Mon Sep 17 00:00:00 2001 From: Connor Ferster Date: Sat, 15 Jun 2024 22:22:34 -0700 Subject: [PATCH 2/4] chore: install black --- .github/workflows/python-pytest.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/python-pytest.yml b/.github/workflows/python-pytest.yml index 8509c3a..ded02a6 100644 --- a/.github/workflows/python-pytest.yml +++ b/.github/workflows/python-pytest.yml @@ -28,6 +28,7 @@ jobs: python -m pip install --upgrade pip python -m pip install uv python -m uv pip install . + python -m uv pip install black - name: Test black formatted run: | black handcalcs --check From dd9f1e6646f26b472aa7a7ce9e21b2258573f870 Mon Sep 17 00:00:00 2001 From: Connor Ferster Date: Sat, 15 Jun 2024 22:23:35 -0700 Subject: [PATCH 3/4] chore: install pytest --- .github/workflows/python-pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-pytest.yml b/.github/workflows/python-pytest.yml index ded02a6..c996bfd 100644 --- a/.github/workflows/python-pytest.yml +++ b/.github/workflows/python-pytest.yml @@ -28,7 +28,7 @@ jobs: python -m pip install --upgrade pip python -m pip install uv python -m uv pip install . - python -m uv pip install black + python -m uv pip install black pytest - name: Test black formatted run: | black handcalcs --check From 0be5165a8c7fdd5d60d699440a15b32129d06afb Mon Sep 17 00:00:00 2001 From: Connor Ferster Date: Sat, 15 Jun 2024 22:24:49 -0700 Subject: [PATCH 4/4] chore: install additional test dependencies --- .github/workflows/python-pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-pytest.yml b/.github/workflows/python-pytest.yml index c996bfd..1df1f9d 100644 --- a/.github/workflows/python-pytest.yml +++ b/.github/workflows/python-pytest.yml @@ -28,7 +28,7 @@ jobs: python -m pip install --upgrade pip python -m pip install uv python -m uv pip install . - python -m uv pip install black pytest + python -m uv pip install black pytest forallpeople sympy pint IPython - name: Test black formatted run: | black handcalcs --check