From dc801fb716687c756af4e19599b1092243afc8eb Mon Sep 17 00:00:00 2001 From: Cory Dodt <121705+corydodt@users.noreply.github.com> Date: Wed, 26 Feb 2020 10:45:51 -0800 Subject: [PATCH] #18 loosen mock requirement and 0.7.5 --- README.md | 7 ++++++- requirements.txt | 16 ---------------- setup.py | 4 ++-- 3 files changed, 8 insertions(+), 19 deletions(-) delete mode 100644 requirements.txt diff --git a/README.md b/README.md index a94e3f1..f8fb91c 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ $ tox Make sure to: -- Update codado/_version.py +- Update version in setup.py - Update the Change Log below - **Commit the changes to the above files** - Add and push a tag for the new release @@ -40,6 +40,10 @@ For point releases: Make sure there is a series-0.x branch in github, and branch ## Change Log +### [0.7.5] - 2020.02.26 +#### Changed: + - The version of mock is no longer strictly specified, allowing higher versions to be used while this package is installed + ### [0.7.4] - 2019.11.26 #### Added: - hotedit.hotedit() for opening your favorite local editor and getting the results back as a string @@ -93,6 +97,7 @@ For point releases: Make sure there is a series-0.x branch in github, and branch - 0.4: Initial public usable release [Crosscap]: https://github.com/corydodt/Crosscap +[0.7.5]: https://github.com/corydodt/Codado/compare/release-0.7.4...release-0.7.5 [0.7.4]: https://github.com/corydodt/Codado/compare/release-0.7.2...release-0.7.4 [0.7.2]: https://github.com/corydodt/Codado/compare/release-0.7.0...release-0.7.2 [0.7.0]: https://github.com/corydodt/Codado/compare/release-0.6.1...release-0.7.0 diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 0779a62..0000000 --- a/requirements.txt +++ /dev/null @@ -1,16 +0,0 @@ -attrs>=18.2.0 -coverage -crosscap>=0.4 -future>=0.17.1 -jinja2>=2.10,<2.11 -mock>=2.0.0,<2.1.0 -pytest-cov -pytest-flakes -pytest-twisted -python-dateutil==2.4.0 -pytz>=2015.4 -pyyaml>=3.13,<3.14 -tox -twine -twisted>=18.9.0 -wrapt diff --git a/setup.py b/setup.py index be5ae4f..2a78a1d 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup -__version__ = '0.7.4' +__version__ = '0.7.5' cfg = dict( @@ -25,7 +25,7 @@ attrs>=17.1.0 crosscap jinja2 - mock>=2.0.0,<2.1.0 + mock python-dateutil pytz>=2015.4 pyyaml