Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,18 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.10']
experimental: [false]

include:
- python-version: '3.11'
experimental: true
- python-version: '3.12'
experimental: true
- python-version: '3.13'
experimental: true
- python-version: '3.14'
experimental: true

steps:
- name: Checkout
Expand Down Expand Up @@ -50,7 +56,7 @@ jobs:
SDL_AUDIODRIVER: dummy

- name: Upload coverage
if: ${{ matrix.python-version == '3.7' }}
if: ${{ matrix.python-version == '3.10' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 1.0.0 (unreleased)

- build(python): support python 3.9 & 3.10
- build(python): support python 3.10
- docs: the changelog is now in project root
- ci: remove Travis CI
- ci: use GitHub Actions
Expand Down
8 changes: 1 addition & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Multimedia',
'Topic :: Multimedia :: Sound/Audio',
Expand All @@ -61,10 +58,7 @@
install_requires=[
"Pygame>=2.0",
"PyOpenGL",
"numpy>=1.14;python_version>'3.7'",
"numpy>=1.17;python_version>'3.8'",
"numpy>=1.19;python_version>'3.9'",
"numpy>=1.21;python_version>'3.10'",
"numpy>=1.21;python_version>='3.10'",
],
test_suite="tests",
)
Loading