File tree 5 files changed +8
-12
lines changed
5 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -719,9 +719,9 @@ jobs:
719
719
720
720
# This tests an "install" with the CMake tools
721
721
install-classic :
722
- name : " 🐍 3.7 • Debian • x86 • Install"
722
+ name : " 🐍 3.9 • Debian • x86 • Install"
723
723
runs-on : ubuntu-latest
724
- container : i386/debian:buster
724
+ container : i386/debian:bullseye
725
725
726
726
steps :
727
727
- uses : actions/checkout@v1 # v1 is required to run inside docker
@@ -801,7 +801,6 @@ jobs:
801
801
fail-fast : false
802
802
matrix :
803
803
python :
804
- - ' 3.7'
805
804
- ' 3.8'
806
805
- ' 3.9'
807
806
- ' 3.10'
@@ -819,8 +818,6 @@ jobs:
819
818
args : -DCMAKE_CXX_STANDARD=20
820
819
- python : ' 3.8'
821
820
args : -DCMAKE_CXX_STANDARD=17
822
- - python : ' 3.7'
823
- args : -DCMAKE_CXX_STANDARD=14
824
821
825
822
826
823
name : " 🐍 ${{ matrix.python }} • MSVC 2019 • x86 ${{ matrix.args }}"
Original file line number Diff line number Diff line change @@ -272,8 +272,8 @@ PYBIND11_WARNING_DISABLE_MSVC(4505)
272
272
#endif
273
273
274
274
#include < Python.h>
275
- #if PY_VERSION_HEX < 0x03070000
276
- # error "PYTHON < 3.7 IS UNSUPPORTED. pybind11 v2.12 was the last to support Python 3.6 ."
275
+ #if PY_VERSION_HEX < 0x03080000
276
+ # error "PYTHON < 3.8 IS UNSUPPORTED. pybind11 v2.13 was the last to support Python 3.7 ."
277
277
#endif
278
278
#include < frameobject.h>
279
279
#include < pythread.h>
Original file line number Diff line number Diff line change 2
2
3
3
import sys
4
4
5
- if sys .version_info < (3 , 7 ): # noqa: UP036
6
- msg = "pybind11 does not support Python < 3.7 . v2.12 was the last release supporting Python 3.6 ."
5
+ if sys .version_info < (3 , 8 ):
6
+ msg = "pybind11 does not support Python < 3.8 . v2.13 was the last release supporting Python 3.7 ."
7
7
raise ImportError (msg )
8
8
9
9
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ ignore_missing_imports = true
30
30
31
31
32
32
[tool .pylint ]
33
- master.py-version = " 3.7 "
33
+ master.py-version = " 3.8 "
34
34
reports.output-format = " colorized"
35
35
messages_control.disable = [
36
36
" design" ,
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ classifiers =
14
14
Topic :: Utilities
15
15
Programming Language :: C++
16
16
Programming Language :: Python :: 3 :: Only
17
- Programming Language :: Python :: 3.7
18
17
Programming Language :: Python :: 3.8
19
18
Programming Language :: Python :: 3.9
20
19
Programming Language :: Python :: 3.10
@@ -38,5 +37,5 @@ project_urls =
38
37
Chat = https://gitter.im/pybind/Lobby
39
38
40
39
[options]
41
- python_requires = >=3.7
40
+ python_requires = >=3.8
42
41
zip_safe = False
You can’t perform that action at this time.
0 commit comments