Skip to content

Commit fd1ebf6

Browse files
committed
Update workflows
1 parent 90f2738 commit fd1ebf6

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

.github/workflows/wheels.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ jobs:
3838
method: 'network'
3939
sub-packages: '["nvcc", "cudart", "opencl"]'
4040

41+
- name: Update setuptools
42+
run: python -m pip install --upgrade setuptools
43+
4144
- name: Build wheels
4245
uses: pypa/cibuildwheel@v2.23.3
4346
env:

pyproject.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,21 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "pyanime4k"
77
version = "3.0.1"
8-
license = {text = "MIT"}
8+
license = "MIT"
9+
license-files = ["LICENSE"]
910
requires-python = ">=3.8"
1011
readme = "README.md"
1112
dependencies = ["numpy"]
13+
classifiers = [
14+
"Programming Language :: Python :: 3",
15+
"Operating System :: Microsoft :: Windows",
16+
"Operating System :: MacOS",
17+
"Operating System :: POSIX",
18+
"Operating System :: Unix",
19+
]
1220

1321
[tool.cibuildwheel]
1422
skip = ["pp*", "*win32", "*i686", "*musllinux*"]
1523

1624
[tool.cibuildwheel.linux]
1725
before-all = "yum install -y ocl-icd ocl-icd-devel"
18-
test-command = "echo 'installed'"

setup.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,6 @@ def main():
3030
setup(
3131
packages=["pyanime4k", "pyanime4k.pyac"],
3232
package_dir={"pyanime4k": "src/pyanime4k", "pyanime4k.pyac": "src/pyanime4k/pyac"},
33-
classifiers=[
34-
"Programming Language :: Python :: 3",
35-
"Operating System :: Microsoft :: Windows",
36-
"Operating System :: MacOS",
37-
"Operating System :: POSIX",
38-
"Operating System :: Unix",
39-
],
4033
cmake_args=pyac_cmake_args,
4134
cmake_source_dir="src/Anime4KCPP",
4235
cmake_install_dir="src/pyanime4k",

0 commit comments

Comments
 (0)