Skip to content

Commit 121366f

Browse files
authored
Support python >= 3.10 (#4)
* set `requires-python` to `>=3.10` * add `3.10` to ci.yaml
1 parent 96eb50e commit 121366f

File tree

3 files changed

+218
-3
lines changed

3 files changed

+218
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.11"]
18+
python-version: ["3.10", "3.11"]
1919

2020
steps:
2121
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "ncsn"
33
version = "0.1.0"
44
description = "Diffusers implementation of Noise Conditional Score Networks (NCSN) [Yang+ NeuriPS'19]"
55
readme = "README.md"
6-
requires-python = ">=3.11"
6+
requires-python = ">=3.10"
77
dependencies = [
88
"diffusers[torch]>=0.31.0,!=0.32.1",
99
"einops>=0.7.0",

0 commit comments

Comments
 (0)