From 0f93c7a230ad4335c9fa0a40d12ee6b3a5424c72 Mon Sep 17 00:00:00 2001 From: Shane Duvall Date: Mon, 2 Dec 2024 12:53:05 -0600 Subject: [PATCH] Update tests to require python >= 3.9 --- .github/workflows/tests.yml | 9 --------- setup.py | 7 ++----- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 792a220..97b401c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,15 +19,6 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Run with setup-python 3.8 - uses: actions/setup-python@v5 - with: - python-version: '3.8' - - name: Setup required modules - run: python -m pip install -r requirements.txt - - name: Run tests - run: python -m unittest discover -s segment - - name: Run with setup-python 3.9 uses: actions/setup-python@v5 with: diff --git a/setup.py b/setup.py index 4bfdd97..810104b 100644 --- a/setup.py +++ b/setup.py @@ -23,12 +23,12 @@ "requests~=2.7", "backoff~=2.1", "python-dateutil~=2.2", - "PyJWT~=2.8" + "PyJWT~=2.10" ] tests_require = [ "mock==2.0.0", - "pylint==2.8.0", + "pylint==3.3.1", "flake8==3.7.9", ] @@ -56,9 +56,6 @@ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",