Skip to content

Commit c1fdfe9

Browse files
authored
chore: drop 3.6, add 3.11 (#123)
* chore: drop 3.6, add 3.11 Signed-off-by: Henry Schreiner <[email protected]> * Update .github/workflows/pip.yml Signed-off-by: Henry Schreiner <[email protected]>
1 parent 750694a commit c1fdfe9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/conda.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
platform: [ubuntu-latest, windows-latest, macos-latest]
20-
python-version: ["3.6", "3.8"]
20+
python-version: ["3.8", "3.10"]
2121

2222
runs-on: ${{ matrix.platform }}
2323

.github/workflows/pip.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
platform: [windows-latest, macos-latest, ubuntu-latest]
20-
python-version: ["3.6", "3.10"]
20+
python-version: ["3.7", "3.11"]
2121

2222
runs-on: ${{ matrix.platform }}
2323

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ python_example
2727
[appveyor-badge]: https://travis-ci.org/pybind/python_example.svg?branch=master&status=passed
2828

2929
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
3131
history.
3232

3333
Installation

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22

3-
from pybind11 import get_cmake_dir
43
# Available at setup time due to pyproject.toml
4+
from pybind11 import get_cmake_dir
55
from pybind11.setup_helpers import Pybind11Extension, build_ext
66
from setuptools import setup
77

@@ -38,5 +38,5 @@
3838
# level" feature, but in the future it may provide more features.
3939
cmdclass={"build_ext": build_ext},
4040
zip_safe=False,
41-
python_requires=">=3.6",
41+
python_requires=">=3.7",
4242
)

0 commit comments

Comments
 (0)