Skip to content

Commit 04ddbeb

Browse files
committed
In 3.10 semantics of PyLong_AsLongLong changed
Before it accepted floating point number: > Changed in version 3.10: This function will no longer use __int__(). These versions are not supported anymore. Let drop them
1 parent a85ce88 commit 04ddbeb

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
- { cabal: "3.14", os: ubuntu-latest, ghc: "9.10.2", python-version: "3.12" }
2525
- { cabal: "3.14", os: ubuntu-latest, ghc: "9.12.2", python-version: "3.12" }
2626
# Scan over supported python versions
27-
- { cabal: "3.14", os: ubuntu-latest, ghc: "9.10.2", python-version: "3.9" }
2827
- { cabal: "3.14", os: ubuntu-latest, ghc: "9.10.2", python-version: "3.10" }
2928
- { cabal: "3.14", os: ubuntu-latest, ghc: "9.10.2", python-version: "3.11" }
3029
- { cabal: "3.14", os: ubuntu-latest, ghc: "9.10.2", python-version: "3.12" }

ChangeLog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
0.2.1.0 [XXX]
22
----------------
3-
* Python>=3.9 is supported now. Choice is somewhat arbitrary and likely will be
4-
guided by availability of old python versions on github CI in the future.
3+
* Only Python>=3.10 is supported now. Earlier versions are not supported anymore.
4+
Now they're tested on CI.
55

66
* Documentation fixes
77

inline-python.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Library
7272
include-dirs: include
7373
c-sources: cbits/python.c
7474
cc-options: -g -Wall
75-
pkgconfig-depends: python3-embed >= 3.8
75+
pkgconfig-depends: python3-embed >= 3.10
7676
--
7777
Exposed-modules:
7878
Python.Inline

0 commit comments

Comments
 (0)