diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dabc09b1..e326a045 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: name: Python ${{ matrix.python }} tests strategy: matrix: - python: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python: ['3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v3 - name: Setup python diff --git a/setup.py b/setup.py index 4d54f08c..fbe0e830 100644 --- a/setup.py +++ b/setup.py @@ -22,5 +22,5 @@ url="https://github.com/recurly/recurly-client-python", packages=setuptools.find_packages(), classifiers=[], - tests_require=["coverage"], + extras_require={"test": ["coverage"]}, )