Merging upstream version 2.5.12.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
890c59b523
commit
24f491d3d0
6 changed files with 19 additions and 26 deletions
13
.github/workflows/main.yml
vendored
Normal file
13
.github/workflows/main.yml
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
name: main
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main, test-me-*]
|
||||
tags:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
main:
|
||||
uses: asottile/workflows/.github/workflows/tox.yml@v1.0.0
|
||||
with:
|
||||
env: '["py38", "py39", "py310"]'
|
|
@ -29,7 +29,7 @@ repos:
|
|||
- id: pyupgrade
|
||||
args: [--py37-plus]
|
||||
- repo: https://github.com/pre-commit/mirrors-autopep8
|
||||
rev: v2.0.0
|
||||
rev: v2.0.1
|
||||
hooks:
|
||||
- id: autopep8
|
||||
- repo: https://github.com/PyCQA/flake8
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
[![build status](https://github.com/pre-commit/identify/actions/workflows/main.yml/badge.svg)](https://github.com/pre-commit/identify/actions/workflows/main.yml)
|
||||
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/pre-commit/identify/main.svg)](https://results.pre-commit.ci/latest/github/pre-commit/identify/main)
|
||||
|
||||
identify
|
||||
========
|
||||
|
||||
[![Build Status](https://dev.azure.com/asottile/asottile/_apis/build/status/pre-commit.identify?branchName=main)](https://dev.azure.com/asottile/asottile/_build/latest?definitionId=67&branchName=main)
|
||||
[![Azure DevOps coverage](https://img.shields.io/azure-devops/coverage/asottile/asottile/67/main.svg)](https://dev.azure.com/asottile/asottile/_build/latest?definitionId=67&branchName=main)
|
||||
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/pre-commit/identify/main.svg)](https://results.pre-commit.ci/latest/github/pre-commit/identify/main)
|
||||
[![PyPI version](https://badge.fury.io/py/identify.svg)](https://pypi.python.org/pypi/identify)
|
||||
|
||||
File identification library for Python.
|
||||
|
||||
Given a file (or some information about a file), return a set of standardized
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
trigger:
|
||||
branches:
|
||||
include: [main, test-me-*]
|
||||
tags:
|
||||
include: ['*']
|
||||
|
||||
resources:
|
||||
repositories:
|
||||
- repository: asottile
|
||||
type: github
|
||||
endpoint: github
|
||||
name: asottile/azure-pipeline-templates
|
||||
ref: refs/tags/v2.4.0
|
||||
|
||||
jobs:
|
||||
- template: job--python-tox.yml@asottile
|
||||
parameters:
|
||||
toxenvs: [py37, py38]
|
||||
os: linux
|
|
@ -168,6 +168,7 @@ EXTENSIONS = {
|
|||
'properties': {'text', 'java-properties'},
|
||||
'proto': {'text', 'proto'},
|
||||
'ps1': {'text', 'powershell'},
|
||||
'pug': {'text', 'pug'},
|
||||
'puml': {'text', 'plantuml'},
|
||||
'purs': {'text', 'purescript'},
|
||||
'pxd': {'text', 'cython'},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[metadata]
|
||||
name = identify
|
||||
version = 2.5.11
|
||||
version = 2.5.12
|
||||
description = File identification library for Python
|
||||
long_description = file: README.md
|
||||
long_description_content_type = text/markdown
|
||||
|
|
Loading…
Add table
Reference in a new issue