Skip to content

Commit

Permalink
update version 0.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
t2y committed Sep 19, 2020
1 parent 8190c9c commit c944e37
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -2,6 +2,13 @@
ChangeLog
=========

0.8.5 (2020-09-19)
------------------

* fix a critical issue pytest cannot detect randomize marker
* drop supporting pytest < 4.0.0
* drop supporting python 3.5

0.8.4 (2020-03-06)
------------------

Expand Down
3 changes: 1 addition & 2 deletions README.rst
@@ -1,7 +1,7 @@
Requirements
------------

* Python 2.7 or 3.5 and later
* Python 2.7 or 3.6 and later

Features
--------
Expand All @@ -13,7 +13,6 @@ Installation

::

$ easy_install pytest-quickcheck # or
$ pip install pytest-quickcheck

Quick Start
Expand Down
8 changes: 4 additions & 4 deletions setup.py
@@ -1,7 +1,7 @@
from setuptools import setup

VERSION = "0.8.4"
REQUIRES = ["pytest >= 2.2"]
VERSION = "0.8.5"
REQUIRES = ["pytest>=4.0,<6.0.0"]

try:
LONG_DESCRIPTION = "".join([
Expand All @@ -20,7 +20,6 @@
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand All @@ -36,6 +35,7 @@
description="pytest plugin to generate random data inspired by QuickCheck",
license="Apache License 2.0",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/x-rst",
classifiers=CLASSIFIERS,
keywords=["test", "pytest", "quickcheck"],
author="Tetsuya Morimoto",
Expand All @@ -45,5 +45,5 @@
packages=["pytest_quickcheck"],
entry_points={"pytest11": ["quickcheck = pytest_quickcheck.plugin"]},
install_requires=REQUIRES,
tests_require=["tox", "pytest", "pytest-codestyle", "pytest-flakes"],
tests_require=["tox", "pytest", "pytest-pycodestyle", "pytest-flakes"],
)

0 comments on commit c944e37

Please sign in to comment.