diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index e6de3c5..f0dba6d 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', '3.14t'] fail-fast: false steps: @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} @@ -28,9 +28,9 @@ jobs: pip install coveralls - name: Run tests - run: coverage run --source=nvd3 setup.py test + run: coverage run --source=nvd3 -m unittest - name: Finish coveralls - run: coveralls + run: coveralls --service=github env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/setup.py b/setup.py index 27a2741..77185d3 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,6 @@ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', - 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2',