Skip to content

Update azure-pipelines template repositories #306

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.1.0
rev: v2.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: debug-statements
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.7
rev: 3.7.9
hooks:
- id: flake8
exclude: ^docs/conf.py
- repo: https://github.com/asottile/pyupgrade
rev: v1.12.0
rev: v1.26.2
hooks:
- id: pyupgrade
- repo: https://github.com/asottile/add-trailing-comma
rev: v1.0.0
rev: v1.5.0
hooks:
- id: add-trailing-comma
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ distribution/deployment. That means you can add just ``libsass`` into
your ``setup.py``'s ``install_requires`` list or ``requirements.txt`` file.
Need no Ruby nor Node.js.

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

.. _Sass: https://sass-lang.com/
.. _LibSass: https://github.com/sass/libsass
Expand Down
8 changes: 4 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ resources:
type: github
endpoint: github
name: asottile/azure-pipeline-templates
ref: refs/tags/v0.0.13
ref: refs/tags/v1.0.0

jobs:
- template: job--pre-commit.yml@asottile
Expand All @@ -36,17 +36,17 @@ jobs:
- script: rm -rf libsass/test
- template: job--python-tox.yml@asottile
parameters:
toxenvs: [py35, py36, py37]
toxenvs: [py36, py37, py38]
os: windows
wheel_tags: true
- template: job--python-tox.yml@asottile
parameters:
toxenvs: [py35, py36, py37]
toxenvs: [py36, py37, py38]
os: windows
architecture: x86
name_postfix: _x86
wheel_tags: true
- template: job--python-tox.yml@asottile
parameters:
toxenvs: [pypy, pypy3, py27, py35, py36, py37]
toxenvs: [pypy, pypy3, py27, py36, py37, py38]
os: linux
1 change: 0 additions & 1 deletion sasstests.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import with_statement

import base64
import contextlib
Expand Down
1 change: 0 additions & 1 deletion sassutils/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

"""
from __future__ import with_statement

import io
import os
Expand Down
2 changes: 1 addition & 1 deletion sassutils/wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

"""
from __future__ import absolute_import, with_statement
from __future__ import absolute_import

import logging
import os
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from __future__ import print_function, with_statement
from __future__ import print_function

import ast
import atexit
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = pypy,pypy3,py27,py35,py36,py37,pre-commit
envlist = pypy,pypy3,py27,py36,py37,py38,pre-commit

[testenv]
usedevelop = true
Expand Down