Skip to content

Commit bdbc8fc

Browse files
authored
Merge pull request #306 from sass/all-repos_autofix_azure-pipelines-autoupdate
Update azure-pipelines template repositories
2 parents 3049924 + b96201c commit bdbc8fc

File tree

8 files changed

+12
-14
lines changed

8 files changed

+12
-14
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v2.1.0
3+
rev: v2.4.0
44
hooks:
55
- id: trailing-whitespace
66
- id: end-of-file-fixer
77
- id: check-yaml
88
- id: debug-statements
99
- repo: https://gitlab.com/pycqa/flake8
10-
rev: 3.7.7
10+
rev: 3.7.9
1111
hooks:
1212
- id: flake8
1313
exclude: ^docs/conf.py
1414
- repo: https://github.com/asottile/pyupgrade
15-
rev: v1.12.0
15+
rev: v1.26.2
1616
hooks:
1717
- id: pyupgrade
1818
- repo: https://github.com/asottile/add-trailing-comma
19-
rev: v1.0.0
19+
rev: v1.5.0
2020
hooks:
2121
- id: add-trailing-comma

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ distribution/deployment. That means you can add just ``libsass`` into
2020
your ``setup.py``'s ``install_requires`` list or ``requirements.txt`` file.
2121
Need no Ruby nor Node.js.
2222

23-
It currently supports CPython 2.7, 3.5--3.7, and PyPy 2.3+!
23+
It currently supports CPython 2.7, 3.6--3.8, and PyPy 2.3+!
2424

2525
.. _Sass: https://sass-lang.com/
2626
.. _LibSass: https://github.com/sass/libsass

azure-pipelines.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ resources:
1313
type: github
1414
endpoint: github
1515
name: asottile/azure-pipeline-templates
16-
ref: refs/tags/v0.0.13
16+
ref: refs/tags/v1.0.0
1717

1818
jobs:
1919
- template: job--pre-commit.yml@asottile
@@ -36,17 +36,17 @@ jobs:
3636
- script: rm -rf libsass/test
3737
- template: job--python-tox.yml@asottile
3838
parameters:
39-
toxenvs: [py35, py36, py37]
39+
toxenvs: [py36, py37, py38]
4040
os: windows
4141
wheel_tags: true
4242
- template: job--python-tox.yml@asottile
4343
parameters:
44-
toxenvs: [py35, py36, py37]
44+
toxenvs: [py36, py37, py38]
4545
os: windows
4646
architecture: x86
4747
name_postfix: _x86
4848
wheel_tags: true
4949
- template: job--python-tox.yml@asottile
5050
parameters:
51-
toxenvs: [pypy, pypy3, py27, py35, py36, py37]
51+
toxenvs: [pypy, pypy3, py27, py36, py37, py38]
5252
os: linux

sasstests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
from __future__ import with_statement
32

43
import base64
54
import contextlib

sassutils/builder.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
33
44
"""
5-
from __future__ import with_statement
65

76
import io
87
import os

sassutils/wsgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
33
44
"""
5-
from __future__ import absolute_import, with_statement
5+
from __future__ import absolute_import
66

77
import logging
88
import os

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from __future__ import print_function, with_statement
1+
from __future__ import print_function
22

33
import ast
44
import atexit

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = pypy,pypy3,py27,py35,py36,py37,pre-commit
2+
envlist = pypy,pypy3,py27,py36,py37,py38,pre-commit
33

44
[testenv]
55
usedevelop = true

0 commit comments

Comments
 (0)