Skip to content

Commit

Permalink
update pilk
Browse files Browse the repository at this point in the history
  • Loading branch information
lemisky committed May 17, 2022
1 parent 20762bc commit ed3a23e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/started_notify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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',
Expand Down

0 comments on commit ed3a23e

Please sign in to comment.