Skip to content

Commit

Permalink
Removing non existing stable Python 3.7 version from TravisCI config
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas-C committed Jan 13, 2018
1 parent 4f8d56c commit 8d49487
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -2,7 +2,6 @@ language: python
python:
- "2.7"
- "3.6"
- "3.7"
addons:
apt:
packages:
Expand Down
2 changes: 1 addition & 1 deletion pre_commit_hooks/validate_html.py
@@ -1,10 +1,10 @@
from __future__ import print_function
import argparse, contextlib, logging, os, shutil, sys
from six import raise_from, text_type
from jinja2 import Environment, FileSystemLoader
from jinja2.defaults import DEFAULT_NAMESPACE
from jinja2.runtime import Context
from jinja2.utils import concat
from six import raise_from, text_type
from pybars import Compiler as PybarCompiler, PybarsError
from html5validator.validator import Validator

Expand Down
2 changes: 1 addition & 1 deletion tests/jinja-base.html
Expand Up @@ -2,4 +2,4 @@
{% block title %}
{% endblock %}
{% block content %}
{% endblock %}
{% endblock %}
2 changes: 1 addition & 1 deletion tests/jinja-partial.html
@@ -1 +1 @@
partial.html content
partial.html content
2 changes: 1 addition & 1 deletion tests/jinja-template.html
Expand Up @@ -14,4 +14,4 @@
{% include "jinja-partial.html" %}
{% endblock %}
{% for icon, link in SOCIAL %}
{% endfor %}
{% endfor %}

0 comments on commit 8d49487

Please sign in to comment.