Skip to content

Commit

Permalink
Add suport for python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
yihming committed Mar 16, 2024
1 parent 7557b2d commit 934b868
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-test.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -40,6 +40,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords="single cell/nucleus genomics analysis",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion wheel_build/build_wheel_for_linux.sh
Expand Up @@ -11,7 +11,7 @@ function repair_wheel {
fi
}

declare -a PythonVersions=("cp38-cp38" "cp39-cp39" "cp310-cp310" "cp311-cp311")
declare -a PythonVersions=("cp38-cp38" "cp39-cp39" "cp310-cp310" "cp311-cp311", "cp312-cp312")

for val in ${PythonVersions[@]}; do
/opt/python/$val/bin/pip install -r /src/requirements.txt
Expand Down

0 comments on commit 934b868

Please sign in to comment.