Skip to content

Commit 36435d9

Browse files
committed
Version 7.0.1
1 parent daa3a53 commit 36435d9

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ History:
22

33
<see Git checking messages for history>
44

5+
7.0.1 2022/10/27
6+
- fixed the wheel package
7+
58
7.0.0 2022/10/27
69
- added support for Python 3.11
710
- added support for Python 3.10

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Maintenance
5353

5454
For the maintainers, here are commands to upload a new release:
5555

56+
rm -rf build dist
5657
python -m build --sdist --wheel
5758
twine check dist/*
5859
twine upload dist/*

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# built documents.
2828
#
2929
# The short X.Y version.
30-
version = "7.0.0"
30+
version = "7.0.1"
3131

3232
# The full version, including alpha/beta/rc tags.
3333
release = "latest"

mss/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from .exception import ScreenShotError
1212
from .factory import mss
1313

14-
__version__ = "7.0.0"
14+
__version__ = "7.0.1"
1515
__author__ = "Mickaël 'Tiger-222' Schoentgen"
1616
__copyright__ = """
1717
Copyright (c) 2013-2022, Mickaël 'Tiger-222' Schoentgen

setup.cfg

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = mss
3-
version = 7.0.0
3+
version = 7.0.1
44
author = Mickaël 'Tiger-222' Schoentgen
55
author_email = [email protected]
66
description = An ultra fast cross-platform multiple screenshots module in pure python using ctypes.
@@ -35,12 +35,10 @@ classifiers =
3535
[options]
3636
zip_safe = False
3737
include_package_data = True
38+
packages_dir = mss
3839
packages = find:
3940
python_requires = >=3.5
4041

41-
[options.packages.find]
42-
where = mss
43-
4442
[options.entry_points]
4543
console_scripts =
4644
mss = mss.__main__:main

0 commit comments

Comments
 (0)