Skip to content

Commit 9a2f602

Browse files
committed
Remove the tdl package.
1 parent ac36902 commit 9a2f602

File tree

15 files changed

+4
-2906
lines changed

15 files changed

+4
-2906
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Unreleased
1010
------------------
1111
Removed
1212
- Python 3.5 is no longer supported.
13+
- The `tdl` module has been dropped.
1314

1415
11.19.3 - 2021-01-07
1516
--------------------

docs/index.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,6 @@ Contents:
4242
tcod/tileset
4343
libtcodpy
4444

45-
.. toctree::
46-
:maxdepth: 2
47-
:caption: Legacy tdl API
48-
49-
tdl
50-
5145
Indices and tables
5246
==================
5347

docs/tdl.rst

Lines changed: 0 additions & 47 deletions
This file was deleted.

setup.cfg

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
test=pytest
33

44
[tool:pytest]
5-
addopts=tcod/ tdl/ tests/ --doctest-modules --cov=tcod --cov=tdl --capture=sys
5+
addopts=tcod/ tests/ --doctest-modules --cov=tcod --capture=sys
66
filterwarnings =
7-
ignore:The tdl module has been deprecated:DeprecationWarning
8-
ignore:::tdl.map
97
ignore::DeprecationWarning:tcod.libtcodpy
108
ignore::PendingDeprecationWarning:tcod.libtcodpy
119
ignore:This class may perform poorly and is no longer needed.::tcod.map

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ def check_sdl_version():
134134
"Forum": "https://github.com/libtcod/python-tcod/discussions",
135135
},
136136
py_modules=["libtcodpy"],
137-
packages=["tdl", "tcod"],
138-
package_data={"tdl": ["*.png"], "tcod": get_package_data()},
137+
packages=["tcod"],
138+
package_data={"tcod": get_package_data()},
139139
python_requires=">=3.6",
140140
install_requires=[
141141
"cffi~=1.13", # Also required by pyproject.toml.

0 commit comments

Comments
 (0)