Skip to content

Commit

Permalink
0.9.61 新增 pyd 打包支持
Browse files Browse the repository at this point in the history
  • Loading branch information
zengbin93 committed Nov 22, 2024
1 parent 39a5041 commit 596abdb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,18 @@ on:

jobs:
deploy:

runs-on: ubuntu-latest

strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
long_description_content_type="text/markdown",
license="Apache Software License",
url="https://github.com/waditu/czsc",
packages=find_packages(exclude=["test", "images", "docs", "examples", "hist"]),
packages=find_packages(include=["czsc", "czsc.*"]),
include_package_data=True,
ext_modules=cythonize(extensions),
install_requires=install_requires,
Expand Down

0 comments on commit 596abdb

Please sign in to comment.