Skip to content

Commit

Permalink
Release 5.1.0
Browse files Browse the repository at this point in the history
Also add Python 3.9 to the CI.
  • Loading branch information
BoboTiG committed Apr 30, 2020
1 parent abff4bf commit 7de27cd
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 11 deletions.
17 changes: 14 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,25 @@ matrix:
- TOXENV=py36
- name: "Python 3.7 on macOS 10.14"
os: osx
osx_image: xcode10.2 # Python 3.7.3 running on macOS 10.14.3
osx_image: xcode11.2 # Python 3.7.4 running on macOS 10.14.4
language: shell
env:
- PYTHON_VERSION=3.7
- TOXENV=py37
- name: "Python 3.8 on macOS 10.14"
os: osx
osx_image: xcode11.3 # Python 3.8.0 running on macOS 10.14.6
language: shell
env:
- PYTHON_VERSION=3.8
- TOXENV=py38
- os: osx
language: shell
before_install:
- bash .travis/install.sh
env:
- PYTHON_VERSION=3.8
- TOXENV=py38
- PYTHON_VERSION=3.9
- TOXENV=py39
- name: "PyPy 3.6 on GNU/Linux"
os: linux
python: "pypy3"
Expand All @@ -64,6 +71,10 @@ matrix:
os: linux
python: "3.8"
env: TOXENV=py38
- name: "Python 3.9 on GNU/Linux"
os: linux
python: "nightly"
env: TOXENV=py39

addons:
apt:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ History:

<see Git checking messages for history>

5.0.1 2020/xx/xx
5.1.0 2020/04/30
- produce wheels for Python 3 only
- MSS: renamed again MSSMixin to MSSBase, now derived from abc.ABCMeta
- tools: force write of file when saving a PNG file
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
5.0.1 (2020-xx-xx)
5.1.0 (2020-04-30)
==================

base.py
Expand Down
6 changes: 6 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ environment:
- python: py38-x64
tox_env: py38
python_path: c:\python38-x64
- python: py39
tox_env: py39
python_path: c:\python39
- python: py39-x64
tox_env: py39
python_path: c:\python39-x64

install:
- python -m pip install virtualenv
Expand Down
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 = "5.0.1"
version = "5.1.0"

# 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 @@ -12,7 +12,7 @@
from .exception import ScreenShotError
from .factory import mss

__version__ = "5.0.1"
__version__ = "5.1.0"
__author__ = "Mickaël 'Tiger-222' Schoentgen"
__copyright__ = """
Copyright (c) 2013-2020, Mickaël 'Tiger-222' Schoentgen
Expand Down
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = mss
version = 5.0.1
version = 5.1.0
author = Mickaël 'Tiger-222' Schoentgen
author-email = contact@tiger-222.fr
description = An ultra fast cross-platform multiple screenshots module in pure python using ctypes.
Expand All @@ -20,11 +20,12 @@ classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Topic :: Multimedia :: Graphics :: Capture :: Screen Capture
Topic :: Software Development :: Libraries

Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ envlist =
lint
types
docs
py{38,37,36,35,py3}
py{39,38,37,36,35,py3}
skip_missing_interpreters = True

[testenv]
Expand All @@ -12,7 +12,8 @@ alwayscopy = True
deps =
pytest
# Must pin that version to support PyPy3
numpy==1.15.4
pypy3: numpy==1.15.4
py{39,38,37,36,35}: numpy
pillow
wheel
commands =
Expand Down

0 comments on commit 7de27cd

Please sign in to comment.