Skip to content

Commit 3905f5c

Browse files
committed
drop support for Python 3.6
1 parent 5e68192 commit 3905f5c

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
fail-fast: false
6464
matrix:
6565
os: [ubuntu-latest, windows-latest, macos-latest]
66-
python: ["3.6", " 3.7", " 3.8", "3.9", "3.10", "3.11"]
66+
python: [" 3.7", " 3.8", "3.9", "3.10", "3.11"]
6767
steps:
6868
- uses: actions/checkout@v3
6969
with:

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ History:
44

55
7.0.1 2022/10/27
66
- fixed the wheel package
7+
- dropped support for Python 3.6
78
- MSS: fixed PEP 484 prohibits implicit Optional
89

910
7.0.0 2022/10/27

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Python MSS
2222
2323
An ultra fast cross-platform multiple screenshots module in pure python using ctypes.
2424

25-
- **Python 3.6+** and PEP8 compliant, no dependency, thread-safe;
25+
- **Python 3.7+** and PEP8 compliant, no dependency, thread-safe;
2626
- very basic, it will grab one screen shot by monitor or a screen shot of all monitors and save it to a PNG file;
2727
- but you can use PIL and benefit from all its formats (or add yours directly);
2828
- integrate well with Numpy and OpenCV;

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Welcome to Python MSS's documentation!
1212
1313
An ultra fast cross-platform multiple screenshots module in pure python using ctypes.
1414

15-
- **Python 3.6+** and :pep:`8` compliant, no dependency, thread-safe;
15+
- **Python 3.7+** and :pep:`8` compliant, no dependency, thread-safe;
1616
- very basic, it will grab one screen shot by monitor or a screen shot of all monitors and save it to a PNG file;
1717
- but you can use PIL and benefit from all its formats (or add yours directly);
1818
- integrate well with Numpy and OpenCV;

docs/source/support.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Support
55
Feel free to try MSS on a system we had not tested, and let us know by creating an `issue <https://github.com/BoboTiG/python-mss/issues>`_.
66

77
- OS: GNU/Linux, macOS and Windows
8-
- Python: 3.6 and newer
8+
- Python: 3.7 and newer
99

1010

1111
Future
@@ -32,3 +32,4 @@ Abandoned
3232
- Python 3.3 (2017-12-05)
3333
- Python 3.4 (2018-03-19)
3434
- Python 3.5 (2022-10-27)
35+
- Python 3.6 (202x-xx-xx)

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ classifiers =
2323
Programming Language :: Python
2424
Programming Language :: Python :: 3
2525
Programming Language :: Python :: 3 :: Only
26-
Programming Language :: Python :: 3.6
2726
Programming Language :: Python :: 3.7
2827
Programming Language :: Python :: 3.8
2928
Programming Language :: Python :: 3.9
@@ -37,7 +36,7 @@ zip_safe = False
3736
include_package_data = True
3837
packages_dir = mss
3938
packages = find:
40-
python_requires = >=3.6
39+
python_requires = >=3.7
4140

4241
[options.entry_points]
4342
console_scripts =

0 commit comments

Comments
 (0)