We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1426465 commit 1a61123Copy full SHA for 1a61123
CHANGELOG.rst
@@ -12,9 +12,9 @@ Changed
12
- Now bundles SDL 2.0.14 for Windows/MacOS.
13
14
Deprecated
15
+ - Support for Python 3.5 will be dropped.
16
- `tcod.console_load_xp` has been deprecated, `tcod.console_from_xp` can load
17
these files without modifying an existing console.
- - Support for Python 3.5 will be dropped soon.
18
19
Fixed
20
- `tcod.console_from_xp` now has better error handling (instead of crashing.)
tcod/__init__.py
@@ -44,7 +44,7 @@
44
45
if sys.version_info < (3, 6):
46
warnings.warn(
47
- "Support for Python 3.5 is being dropped from python-tcod.",
+ "Support for Python 3.5 has been dropped from python-tcod.",
48
DeprecationWarning,
49
stacklevel=2,
50
)
0 commit comments