summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Willhaus <mail@janwillhaus.de>2019-11-02 13:38:49 +0100
committerJan Willhaus <mail@janwillhaus.de>2019-11-02 16:03:29 +0100
commitf1f2996fdc15c2b4c4caf5cce412370f77155181 (patch)
tree738c6fbc02557802817be346ffa7d2c482362847
parent4b88acb9ddefa415070133e810b6ca5bfab90745 (diff)
downloadwarlock-f1f2996fdc15c2b4c4caf5cce412370f77155181.tar.gz
Drop support for EOL'd Python 3.4
-rw-r--r--.travis.yml1
-rw-r--r--pyproject.toml3
2 files changed, 1 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 5eafa8d..84c1a54 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,7 +20,6 @@ script:
jobs:
include:
- python: 2.7
- - python: 3.4
- python: 3.5
- python: 3.6
- python: 3.7
diff --git a/pyproject.toml b/pyproject.toml
index cbae1a3..9c2cf7a 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -19,7 +19,6 @@ classifiers = [
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
@@ -30,7 +29,7 @@ packages = [
]
[tool.poetry.dependencies]
-python = "~2.7 || ^3.4"
+python = "~2.7 || ^3.5"
jsonschema = ">=0.7,<4"
jsonpatch = ">=0.10,<2"
six = "*"