Skip to content

Commit 200f606

Browse files
committed
Add Python 3.9 support, drop Python 3.5
Signed-off-by: Christopher Arndt <[email protected]>
1 parent bc6a9a0 commit 200f606

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Diff for: INSTALL-windows.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ Installing required software
1313

1414
You probably need administrator rights for some or all of the following steps.
1515

16-
#. Install the latest release of Python 3.5+ from
16+
#. Install the latest release of Python 3.6+ from
1717
https://www.python.org/downloads/windows/ to the default location (e.g.
18-
``C:\Python35``). You can install either or both the 32-bit and the 64-bit
18+
``C:\Python36``). You can install either or both the 32-bit and the 64-bit
1919
version.
2020

2121
In the installer, enable the option to install pip_. Optionally, *for only

Diff for: README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ python-rtmidi_ is a Python binding for RtMidi implemented using Cython_ and
3939
provides a thin wrapper around the RtMidi C++ interface. The API is basically
4040
the same as the C++ one but with the naming scheme of classes, methods and
4141
parameters adapted to the Python PEP-8 conventions and requirements of the
42-
Python package naming structure. **python-rtmidi** supports Python 3 (3.5, 3.6,
43-
3.7, and 3.8).
42+
Python package naming structure. **python-rtmidi** supports Python 3 (3.6, 3.7,
43+
3.8, and 3.9).
4444

4545
The documentation_ provides installation instructions, a history of changes
4646
per release and an API reference.

Diff for: setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ classifiers =
4949
Operating System :: MacOS :: MacOS X
5050
Programming Language :: Python
5151
Programming Language :: Python :: 3
52-
Programming Language :: Python :: 3.5
5352
Programming Language :: Python :: 3.6
5453
Programming Language :: Python :: 3.7
5554
Programming Language :: Python :: 3.8
55+
Programming Language :: Python :: 3.9
5656
Topic :: Multimedia :: Sound/Audio :: MIDI
5757
Topic :: Software Development :: Libraries :: Python Modules
5858
description = A Python binding for the RtMidi C++ library implemented using Cython.

Diff for: src/_rtmidi.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ and Windows (MultiMedia System) operating systems.
1818
provides a thin wrapper around the RtMidi C++ interface. The API is basically
1919
the same as the C++ one but with the naming scheme of classes, methods and
2020
parameters adapted to the Python PEP-8 conventions and requirements of the
21-
Python package naming structure. **python-rtmidi** supports Python 3 (3.5, 3.6,
22-
3.7, and 3.8).
21+
Python package naming structure. **python-rtmidi** supports Python 3 (3.6, 3.7,
22+
3.8, and 3.9).
2323
2424
2525
Usage example

Diff for: tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = flake8, py35, py36, py37, py38
2+
envlist = flake8, py36, py37, py38, py39
33
skip_missing_interpreters = True
44

55
[testenv]

0 commit comments

Comments
 (0)