This repository was archived by the owner on Jan 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +4
-5
lines changed Expand file tree Collapse file tree 5 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 28
28
shell : bash
29
29
run : |
30
30
source ./.github/workflows/install-conda.sh
31
- python -m pip install --upgrade pip setuptools wheel coverage;
32
31
33
32
- name : Deploy packages
34
33
if : startsWith(github.ref, 'refs/tags/') && matrix.no-deploy != '1'
Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ jobs:
23
23
shell : bash
24
24
run : |
25
25
source ./.github/workflows/install-conda.sh
26
- python -m pip install --upgrade pip setuptools wheel coverage;
27
26
28
27
- name : Build extensions
29
28
shell : bash
30
29
run : |
31
30
source ./.github/workflows/reload-env.sh
31
+ if [ $UNAME == "darwin" ]; then export CC="gcc-10"; fi
32
32
python setup.py build_ext -i
33
33
34
34
- name : Test with unittest
Original file line number Diff line number Diff line change 30
30
conda activate wheel
31
31
32
32
pip install -r requirements-wheel.txt
33
- pip wheel --no-deps .
33
+ CFLAGS=-Wno-error pip wheel --no-deps .
34
34
35
35
conda activate test
36
36
Original file line number Diff line number Diff line change @@ -37,4 +37,4 @@ test.conf
37
37
* .iml
38
38
39
39
# Generated files
40
- clinic /* .h
40
+ ** / clinic /* .h
Original file line number Diff line number Diff line change 21
21
define_macros = [
22
22
("HAVE_SHM_OPEN" , "1" ),
23
23
("HAVE_SHM_UNLINK" , "1" ),
24
- ("HAVE_SHM_MMAN_H" , 1 ),
24
+ ("HAVE_SHM_MMAN_H" , "1" ),
25
25
],
26
26
libraries = ["rt" ] if sys .platform == 'linux' else [],
27
27
sources = ["shared_memory/posixshmem.c" ],
You can’t perform that action at this time.
0 commit comments