summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Willhaus <mail@janwillhaus.de>2019-11-02 14:44:10 +0100
committerJan Willhaus <mail@janwillhaus.de>2019-11-02 16:03:29 +0100
commitc56af79576b1bbe372f2354e6bac562274a747c8 (patch)
tree1c1c31a33dadf094cfcd35a43b0681c5d7d1a3cb
parentf1f2996fdc15c2b4c4caf5cce412370f77155181 (diff)
downloadwarlock-c56af79576b1bbe372f2354e6bac562274a747c8.tar.gz
Prepare project metadata for 1.4
-rw-r--r--pyproject.toml9
1 files changed, 5 insertions, 4 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 9c2cf7a..1450944 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "warlock"
-version = "1.3.1"
+version = "1.4.0-alpha"
description = "Python object model built on JSON schema and JSON patch."
readme = "README.md"
authors = ["Brian Waldon <bcwaldon@gmail.com>"]
@@ -22,6 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
+ "Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
@@ -30,13 +31,13 @@ packages = [
[tool.poetry.dependencies]
python = "~2.7 || ^3.5"
-jsonschema = ">=0.7,<4"
-jsonpatch = ">=0.10,<2"
+jsonschema = "^3"
+jsonpatch = "^1"
six = "*"
[tool.poetry.dev-dependencies]
pytest = "^4.0"
-pytest-cov = "^2.7"
+pytest-cov = "^2.8"
[tool.black]
line-length = 88