File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 17
17
fail-fast : false
18
18
matrix :
19
19
platform : [ubuntu-latest, windows-latest, macos-latest]
20
- python-version : ["3.6 ", "3.8 "]
20
+ python-version : ["3.8 ", "3.10 "]
21
21
22
22
runs-on : ${{ matrix.platform }}
23
23
Original file line number Diff line number Diff line change 17
17
fail-fast : false
18
18
matrix :
19
19
platform : [windows-latest, macos-latest, ubuntu-latest]
20
- python-version : ["3.6 ", "3.10 "]
20
+ python-version : ["3.7 ", "3.11 "]
21
21
22
22
runs-on : ${{ matrix.platform }}
23
23
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ python_example
27
27
[ appveyor-badge ] : https://travis-ci.org/pybind/python_example.svg?branch=master&status=passed
28
28
29
29
An example project built with [ pybind11] ( https://github.com/pybind/pybind11 ) .
30
- This requires Python 3.6 +; for older versions of Python, check the commit
30
+ This requires Python 3.7 +; for older versions of Python, check the commit
31
31
history.
32
32
33
33
Installation
Original file line number Diff line number Diff line change 1
1
import sys
2
2
3
- from pybind11 import get_cmake_dir
4
3
# Available at setup time due to pyproject.toml
4
+ from pybind11 import get_cmake_dir
5
5
from pybind11 .setup_helpers import Pybind11Extension , build_ext
6
6
from setuptools import setup
7
7
38
38
# level" feature, but in the future it may provide more features.
39
39
cmdclass = {"build_ext" : build_ext },
40
40
zip_safe = False ,
41
- python_requires = ">=3.6 " ,
41
+ python_requires = ">=3.7 " ,
42
42
)
You can’t perform that action at this time.
0 commit comments