Skip to content

Commit

Permalink
Fix bitrot
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Feb 8, 2017
1 parent 5d40715 commit 6128b61
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
@@ -1,5 +1,5 @@
- repo: https://github.com/pre-commit/pre-commit-hooks
sha: 35548254adb636ce52b5574eb1904b8c795b673e
sha: v0.7.1
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -11,7 +11,7 @@
- id: requirements-txt-fixer
- id: flake8
- repo: https://github.com/asottile/reorder_python_imports
sha: 017e2f64306853ec7f000db52b8280da27eb3b96
sha: v0.3.1
hooks:
- id: reorder-python-imports
args: ['--application-directories', '.:bench']
16 changes: 9 additions & 7 deletions .travis.yml
@@ -1,14 +1,16 @@
language: python
python: 3.5
env: # These should match the tox env list
- TOXENV=py27
- TOXENV=py34
- TOXENV=py35
- TOXENV=pypy
sudo: false
matrix:
include:
- env: TOXENV=py27
- env: TOXENV=py35
python: 3.5
- env: TOXENV=py36
python: 3.6
- env: TOXENV=pypy
install: pip install coveralls tox
script: tox
after_success: coveralls
sudo: false
cache:
directories:
- $HOME/.cache/pip
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -14,8 +14,8 @@
'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 :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: WWW/HTTP',
Expand Down
1 change: 1 addition & 0 deletions tests/SyntaxAndOutput_test.py
Expand Up @@ -31,6 +31,7 @@ def meth1(self, arg="doo"):
def dummyFunc(arg="Scooby"):
return arg


defaultTestNamespace = {
'aStr': 'blarg',
'anInt': 1,
Expand Down

0 comments on commit 6128b61

Please sign in to comment.