Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7de27cd

Browse files
authored
Release 5.1.0
Also add Python 3.9 to the CI.
1 parent abff4bf commit 7de27cd

File tree

8 files changed

+30
-11
lines changed

8 files changed

+30
-11
lines changed

.travis.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,25 @@ matrix:
3232
- TOXENV=py36
3333
- name: "Python 3.7 on macOS 10.14"
3434
os: osx
35-
osx_image: xcode10.2 # Python 3.7.3 running on macOS 10.14.3
35+
osx_image: xcode11.2 # Python 3.7.4 running on macOS 10.14.4
3636
language: shell
3737
env:
3838
- PYTHON_VERSION=3.7
3939
- TOXENV=py37
40+
- name: "Python 3.8 on macOS 10.14"
41+
os: osx
42+
osx_image: xcode11.3 # Python 3.8.0 running on macOS 10.14.6
43+
language: shell
44+
env:
45+
- PYTHON_VERSION=3.8
46+
- TOXENV=py38
4047
- os: osx
4148
language: shell
4249
before_install:
4350
- bash .travis/install.sh
4451
env:
45-
- PYTHON_VERSION=3.8
46-
- TOXENV=py38
52+
- PYTHON_VERSION=3.9
53+
- TOXENV=py39
4754
- name: "PyPy 3.6 on GNU/Linux"
4855
os: linux
4956
python: "pypy3"
@@ -64,6 +71,10 @@ matrix:
6471
os: linux
6572
python: "3.8"
6673
env: TOXENV=py38
74+
- name: "Python 3.9 on GNU/Linux"
75+
os: linux
76+
python: "nightly"
77+
env: TOXENV=py39
6778

6879
addons:
6980
apt:

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ History:
22

33
<see Git checking messages for history>
44

5-
5.0.1 2020/xx/xx
5+
5.1.0 2020/04/30
66
- produce wheels for Python 3 only
77
- MSS: renamed again MSSMixin to MSSBase, now derived from abc.ABCMeta
88
- tools: force write of file when saving a PNG file

CHANGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
5.0.1 (2020-xx-xx)
1+
5.1.0 (2020-04-30)
22
==================
33

44
base.py

appveyor.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ environment:
3030
- python: py38-x64
3131
tox_env: py38
3232
python_path: c:\python38-x64
33+
- python: py39
34+
tox_env: py39
35+
python_path: c:\python39
36+
- python: py39-x64
37+
tox_env: py39
38+
python_path: c:\python39-x64
3339

3440
install:
3541
- python -m pip install virtualenv

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 = "5.0.1"
30+
version = "5.1.0"
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
@@ -12,7 +12,7 @@
1212
from .exception import ScreenShotError
1313
from .factory import mss
1414

15-
__version__ = "5.0.1"
15+
__version__ = "5.1.0"
1616
__author__ = "Mickaël 'Tiger-222' Schoentgen"
1717
__copyright__ = """
1818
Copyright (c) 2013-2020, Mickaël 'Tiger-222' Schoentgen

setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = mss
3-
version = 5.0.1
3+
version = 5.1.0
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.
@@ -20,11 +20,12 @@ classifiers =
2020
License :: OSI Approved :: MIT License
2121
Programming Language :: Python
2222
Programming Language :: Python :: 3
23+
Programming Language :: Python :: 3 :: Only
2324
Programming Language :: Python :: 3.5
2425
Programming Language :: Python :: 3.6
2526
Programming Language :: Python :: 3.7
2627
Programming Language :: Python :: 3.8
27-
Programming Language :: Python :: 3 :: Only
28+
Programming Language :: Python :: 3.9
2829
Topic :: Multimedia :: Graphics :: Capture :: Screen Capture
2930
Topic :: Software Development :: Libraries
3031

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ envlist =
33
lint
44
types
55
docs
6-
py{38,37,36,35,py3}
6+
py{39,38,37,36,35,py3}
77
skip_missing_interpreters = True
88

99
[testenv]
@@ -12,7 +12,8 @@ alwayscopy = True
1212
deps =
1313
pytest
1414
# Must pin that version to support PyPy3
15-
numpy==1.15.4
15+
pypy3: numpy==1.15.4
16+
py{39,38,37,36,35}: numpy
1617
pillow
1718
wheel
1819
commands =

0 commit comments

Comments
 (0)