Skip to content

Commit

Permalink
include Python 3.13 in CI hacks in setup.py (#464)
Browse files Browse the repository at this point in the history
  • Loading branch information
slayoo authored Oct 20, 2024
1 parent ad0075d commit 1c08c32
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ def get_long_description():
10: "==0.58.1",
11: "==0.58.1",
12: "==0.59.1",
13: "==0.59.1",
}[sys.version_info.minor]
if CI and not _32bit
else ""
Expand All @@ -49,6 +50,7 @@ def get_long_description():
10: "==1.24.4",
11: "==1.24.4",
12: "==1.26.4",
13: "==1.26.4",
}[sys.version_info.minor]
if CI
else ""
Expand All @@ -67,6 +69,7 @@ def get_long_description():
10: "==1.10.1",
11: "==1.10.1",
12: "==1.13.0",
13: "==1.13.0",
}[sys.version_info.minor]
if CI and not _32bit
else ""
Expand Down

0 comments on commit 1c08c32

Please sign in to comment.