File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 5757 - name : Checkout submodules
5858 run : git submodule update --init --recursive --depth 1
5959 - name : Install Python dependencies
60- run : pip install mypy pytest types-tabulate -r requirements.txt
60+ run : pip install mypy pytest -r requirements.txt
6161 - name : Fake initialize package
6262 run : |
6363 echo '__version__ = ""' > tcod/version.py
Original file line number Diff line number Diff line change @@ -2,4 +2,6 @@ cffi~=1.13
22numpy >= 1.20.3
33pycparser >= 2.14
44setuptools >= 36.0.1
5+ types-setuptools
6+ types-tabulate
57typing_extensions
Original file line number Diff line number Diff line change 99import warnings
1010from typing import List
1111
12- from setuptools import setup # type: ignore
12+ from setuptools import setup
1313
1414SDL_VERSION_NEEDED = (2 , 0 , 5 )
1515
@@ -147,6 +147,7 @@ def check_sdl_version() -> None:
147147 "Programming Language :: Python :: 3.7" ,
148148 "Programming Language :: Python :: 3.8" ,
149149 "Programming Language :: Python :: 3.9" ,
150+ "Programming Language :: Python :: 3.10" ,
150151 "Programming Language :: Python :: Implementation :: CPython" ,
151152 "Programming Language :: Python :: Implementation :: PyPy" ,
152153 "Topic :: Games/Entertainment" ,
You can’t perform that action at this time.
0 commit comments