Skip to content

Commit

Permalink
Version 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BoboTiG committed Oct 27, 2022
1 parent daa3a53 commit 36435d9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ History:

<see Git checking messages for history>

7.0.1 2022/10/27
- fixed the wheel package

7.0.0 2022/10/27
- added support for Python 3.11
- added support for Python 3.10
Expand Down
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ Maintenance

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

rm -rf build dist
python -m build --sdist --wheel
twine check dist/*
twine upload dist/*
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# built documents.
#
# The short X.Y version.
version = "7.0.0"
version = "7.0.1"

# The full version, including alpha/beta/rc tags.
release = "latest"
Expand Down
2 changes: 1 addition & 1 deletion mss/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from .exception import ScreenShotError
from .factory import mss

__version__ = "7.0.0"
__version__ = "7.0.1"
__author__ = "Mickaël 'Tiger-222' Schoentgen"
__copyright__ = """
Copyright (c) 2013-2022, Mickaël 'Tiger-222' Schoentgen
Expand Down
6 changes: 2 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = mss
version = 7.0.0
version = 7.0.1
author = Mickaël 'Tiger-222' Schoentgen
author_email = [email protected]
description = An ultra fast cross-platform multiple screenshots module in pure python using ctypes.
Expand Down Expand Up @@ -35,12 +35,10 @@ classifiers =
[options]
zip_safe = False
include_package_data = True
packages_dir = mss
packages = find:
python_requires = >=3.5

[options.packages.find]
where = mss

[options.entry_points]
console_scripts =
mss = mss.__main__:main
Expand Down

0 comments on commit 36435d9

Please sign in to comment.