File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed
Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 2727 python-version : 3.12
2828
2929 - name : Install Dependencies 📦
30- run : pip install -r requirements.txt
30+ run : pip3 install -r requirements.txt
3131
3232 - name : Build and Install Python Extension 🛠️
3333 run : pip3 install src/
Original file line number Diff line number Diff line change 1+ [build-system ]
2+ requires = [" setuptools>=45" , " wheel" , " Cython>=0.29" ]
3+ build-backend = " setuptools.build_meta"
4+
5+ [project ]
6+ name = " cpp-python-extension"
7+ version = " 1.0.0"
8+ description = " Example module written in C++ with Python bindings"
9+ requires-python = " >=3.8"
10+ dependencies = [
11+ " Cython>=0.29" ,
12+ ]
13+
14+ [project .optional-dependencies ]
15+ dev = [
16+ " pytest" ,
17+ " pytest-benchmark" ,
18+ ]
19+
20+ [tool .setuptools ]
21+ packages = []
You can’t perform that action at this time.
0 commit comments