Skip to content

Commit

Permalink
Update python to 3.12.8 for ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
杨赫然 committed Dec 18, 2024
1 parent da31024 commit 67cb56c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fetch-depth: 1
- uses: actions/setup-python@v1
with:
python-version: "3.8"
python-version: "3.12.8"
- name: install dependencies and test
run: |
cd $GITHUB_WORKSPACE
Expand Down
4 changes: 2 additions & 2 deletions ci/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ def _env_add(*a, **kw):

_env_add('PATH', join(PREFIX, 'bin'))
if on_github_actions():
_env_add('PYTHONPATH', join(os.environ.get('RUNNER_TOOL_CACHE'), 'Python/3.8.14/x64/lib/python3.8/site-packages'))
_env_add('PYTHONPATH', join(PREFIX, 'lib/python3.8/site-packages'))
_env_add('PYTHONPATH', join(os.environ.get('RUNNER_TOOL_CACHE'), 'Python/3.12.8/x64/lib/python3.12/site-packages'))
_env_add('PYTHONPATH', join(PREFIX, 'lib/python3.12.8/site-packages'))
_env_add('PKG_CONFIG_PATH', join(PREFIX, 'lib', 'pkgconfig'))
_env_add('PKG_CONFIG_PATH', join(PREFIX, 'lib64', 'pkgconfig'))
_env_add('PKG_CONFIG_PATH', libsearpc_dir)
Expand Down

0 comments on commit 67cb56c

Please sign in to comment.