Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Add support for Python 3.10 #188

Merged
merged 15 commits into from
Jan 9, 2022
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
python_arch:
- x64
include:
Expand Down Expand Up @@ -103,7 +104,7 @@ jobs:
- name: Run tests
run: pytest -v --pyargs lightning
- name: Create archive with sources
if: matrix.os == 'ubuntu-latest' && matrix.python_version == '3.9' && startsWith(github.ref, 'refs/tags/')
if: matrix.os == 'ubuntu-latest' && matrix.python_version == '3.10' && startsWith(github.ref, 'refs/tags/')
run: python setup.py sdist
- name: Create wheels
if: startsWith(github.ref, 'refs/tags/')
Expand Down