From ed3a23edd493797cb6f84a169451bf6f6eb9e55c Mon Sep 17 00:00:00 2001 From: foyou Date: Tue, 17 May 2022 20:57:41 +0800 Subject: [PATCH] update pilk --- .github/workflows/started_notify.yml | 3 --- CMakeLists.txt | 2 +- setup.py | 3 +++ 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/started_notify.yml b/.github/workflows/started_notify.yml index ddf600f..4467129 100644 --- a/.github/workflows/started_notify.yml +++ b/.github/workflows/started_notify.yml @@ -6,9 +6,6 @@ jobs: Notify: runs-on: ubuntu-latest steps: - - name: Install Dependencies - run: | - pip install yagmail[all] requests - name: Download Scripts run: | wget https://raw.githubusercontent.com/foyoux/started-notify/main/.github/workflows/started_notify.py#${{github.run_id}} diff --git a/CMakeLists.txt b/CMakeLists.txt index f51b837..0e6ab57 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ set(CMAKE_C_STANDARD 99) set(CMAKE_C_STANDARD_REQUIRED True) # Python相关 -set(PYTHON_HOME "C:/Users/foyou/AppData/Local/Programs/Python/Python_d310") +set(PYTHON_HOME "C:/Users/foyou/AppData/Local/Programs/Python/Python310") include_directories(${PYTHON_HOME}/include) link_directories(${PYTHON_HOME}/libs) diff --git a/setup.py b/setup.py index 223746a..d9de79f 100644 --- a/setup.py +++ b/setup.py @@ -4,8 +4,10 @@ SKP_SILK_SRC = 'src/SKP_SILK_SRC/' sources = glob(SKP_SILK_SRC + '*.c') +# noinspection SpellCheckingInspection sources.append('src/pilkmodule.c') +# noinspection SpellCheckingInspection pilkmodule = Extension( name='pilk._pilk', sources=sources, @@ -15,6 +17,7 @@ with open('README.md', encoding='utf8') as f: long_description = f.read() +# noinspection SpellCheckingInspection setup( name='pilk', version='0.0.2',