Skip to content

Commit c49707c

Browse files
committed
Start work on next release of PySDL2
1 parent 08a26f8 commit c49707c

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.github/workflows/run_tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ jobs:
8484
- name: Install dependencies and latest SDL2 binaries
8585
run: |
8686
python -m pip install --upgrade pip
87+
python -m pip install wheel
8788
python -m pip install --prefer-binary numpy pytest pillow
8889
python -m pip install pysdl2-dll==$PYSDL2_DLL_VERSION
8990

doc/news.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@ Release News
22
============
33
This describes the latest changes between the PySDL2 releases.
44

5+
0.9.18 (Unreleased)
6+
-------------------
7+
8+
59
0.9.17
610
------
711

8-
Released on 2023-12-30.
12+
Released on 2024-12-30.
913

1014
New Features:
1115

sdl2/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@
4949
_SDL_SetMainReady = _bind("SDL_SetMainReady")
5050
_SDL_SetMainReady()
5151

52-
__version__ = "0.9.17"
53-
version_info = (0, 9, 17)
52+
__version__ = "0.9.18a1"
53+
version_info = (0, 9, 18)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import re
55
from setuptools import setup
66

7-
VERSION = "0.9.17"
7+
VERSION = "0.9.18a1"
88

99
if __name__ == "__main__":
1010

0 commit comments

Comments
 (0)