File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ jobs:
235
235
- name : Install Python dependencies
236
236
run : |
237
237
python -m pip install --upgrade pip
238
- pip install cibuildwheel==2.19.2
238
+ pip install cibuildwheel==2.23.3
239
239
- name : Build wheels
240
240
run : |
241
241
python -m cibuildwheel --output-dir wheelhouse
@@ -290,7 +290,7 @@ jobs:
290
290
# Downloads SDL2 for the later step.
291
291
run : python build_sdl.py
292
292
- name : Build wheels
293
- uses : pypa/cibuildwheel@v2.19.2
293
+ uses : pypa/cibuildwheel@v2.23.3
294
294
env :
295
295
CIBW_BUILD : ${{ matrix.python }}
296
296
CIBW_ARCHS_MACOS : x86_64 arm64 universal2
Original file line number Diff line number Diff line change 1
1
BSD 2-Clause License
2
2
3
- Copyright (c) 2009-2023 , Kyle Benesch and the python-tcod contributors.
3
+ Copyright (c) 2009-2025 , Kyle Benesch and the python-tcod contributors.
4
4
All rights reserved.
5
5
6
6
Redistribution and use in source and binary forms, with or without
Original file line number Diff line number Diff line change 65
65
66
66
# General information about the project.
67
67
project = "python-tcod"
68
- copyright = "2009-2023 , Kyle Benesch"
68
+ copyright = "2009-2025 , Kyle Benesch"
69
69
author = "Kyle Benesch"
70
70
71
71
# The version info for the project you're documenting, acts as replacement for
Original file line number Diff line number Diff line change 2
2
requires = [
3
3
# setuptools >=64.0.0 might break editable installs
4
4
# https://github.com/pypa/setuptools/issues/3548
5
- " setuptools >=61 .0.0 " ,
5
+ " setuptools >=77 .0.3 " ,
6
6
" setuptools_scm[toml]>=6.2" ,
7
+ " packaging>=24.2" ,
7
8
" wheel>=0.37.1" ,
8
9
" cffi>=1.15" ,
9
10
" pycparser>=2.14" ,
@@ -19,7 +20,12 @@ description = "The official Python port of libtcod."
19
20
authors = [{ name = " Kyle Benesch" , email = " 4b796c65+tcod@gmail.com" }]
20
21
readme = " README.rst"
21
22
requires-python = " >=3.10"
22
- license = { text = " Simplified BSD License" }
23
+ license = " BSD-2-Clause"
24
+ license-files = [
25
+ " LICENSE.txt" ,
26
+ " libtcod/LICENSE.txt" ,
27
+ " libtcod/LIBTCOD-CREDITS.txt" ,
28
+ ]
23
29
dependencies = [
24
30
" cffi>=1.15" ,
25
31
' numpy>=1.21.4; implementation_name != "pypy"' ,
@@ -39,7 +45,6 @@ classifiers = [
39
45
" Environment :: MacOS X" ,
40
46
" Environment :: X11 Applications" ,
41
47
" Intended Audience :: Developers" ,
42
- " License :: OSI Approved :: BSD License" ,
43
48
" Natural Language :: English" ,
44
49
" Operating System :: POSIX" ,
45
50
" Operating System :: MacOS :: MacOS X" ,
You can’t perform that action at this time.
0 commit comments