Skip to content

Commit 1a61123

Browse files
committed
Rephrase dropping support of Python 3.5.
1 parent 1426465 commit 1a61123

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Changed
1212
- Now bundles SDL 2.0.14 for Windows/MacOS.
1313

1414
Deprecated
15+
- Support for Python 3.5 will be dropped.
1516
- `tcod.console_load_xp` has been deprecated, `tcod.console_from_xp` can load
1617
these files without modifying an existing console.
17-
- Support for Python 3.5 will be dropped soon.
1818

1919
Fixed
2020
- `tcod.console_from_xp` now has better error handling (instead of crashing.)

tcod/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
if sys.version_info < (3, 6):
4646
warnings.warn(
47-
"Support for Python 3.5 is being dropped from python-tcod.",
47+
"Support for Python 3.5 has been dropped from python-tcod.",
4848
DeprecationWarning,
4949
stacklevel=2,
5050
)

0 commit comments

Comments
 (0)