From 5df6d9c815ef7719d2c7bc4bca1fdf744a0caa84 Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Thu, 7 Sep 2023 09:39:11 -0400 Subject: [PATCH] Drop 3.7 test runner (#5922) * Drop 3.7 test runner and invoke 3.12 * Ok 3.12 on windows still hangs --- .github/workflows/ci.yaml | 2 +- tests/integration/test_install_categories.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 15b32508..bb89362c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -75,7 +75,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, "3.10", 3.11] # , 3.12] # Python 3.12 tests are failing + python-version: [3.8, 3.9, "3.10", 3.11] # 3.12 has issues with windows hanging indefinitely at present os: [MacOS, Ubuntu, Windows] steps: diff --git a/tests/integration/test_install_categories.py b/tests/integration/test_install_categories.py index 6d52d680..1f52c2d0 100644 --- a/tests/integration/test_install_categories.py +++ b/tests/integration/test_install_categories.py @@ -96,7 +96,7 @@ setup( author_email='test@pipenv.package', license='MIT', packages=[], - install_requires=['six'], + install_requires=['six', 'setuptools'], zip_safe=False ) """.strip()