Skip to content

Commit 62382b4

Browse files
committed
Update skel.
1 parent bf481c2 commit 62382b4

File tree

11 files changed

+25
-25
lines changed

11 files changed

+25
-25
lines changed

.appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
version: '{branch}-{build}'
22
build: off
3+
image: Visual Studio 2019
34
environment:
45
global:
56
TWINE_USERNAME: ionel

.cookiecutterrc

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# Generated by cookiepatcher, a small shim around cookiecutter (pip install cookiepatcher)
22

3-
cookiecutter:
4-
_extensions:
5-
- jinja2_time.TimeExtension
6-
_template: /home/ionel/open-source/cookiecutter-pylibrary
3+
default_context:
74
allow_tests_inside_package: no
85
appveyor: yes
96
c_extension_function: '-'

.editorconfig

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
root = true
33

44
[*]
5+
# Use Unix-style newlines for most files (except Windows files, see below).
56
end_of_line = lf
67
trim_trailing_whitespace = true
7-
insert_final_newline = true
88
indent_style = space
9+
insert_final_newline = true
910
indent_size = 4
1011
charset = utf-8
1112

@@ -14,3 +15,6 @@ end_of_line = crlf
1415

1516
[*.{yml,yaml}]
1617
indent_size = 2
18+
19+
[*.tsv]
20+
indent_style = tab

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,14 @@ htmlcov
3939
# Translations
4040
*.mo
4141

42-
# Mr Developer
42+
# Buildout
4343
.mr.developer.cfg
44+
45+
# IDE project files
4446
.project
4547
.pydevproject
4648
.idea
49+
.vscode
4750
*.iml
4851
*.komodoproject
4952

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# pre-commit install
33
# To update the pre-commit hooks run:
44
# pre-commit install-hooks
5-
exclude: '^(.tox|ci/templates|.bumpversion.cfg)(/|$)'
5+
exclude: '^(\.tox|ci/templates|\.bumpversion\.cfg)(/|$)'
66
repos:
77
- repo: https://github.com/pre-commit/pre-commit-hooks
88
rev: master

.travis.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
language: python
2+
dist: xenial
3+
virt: lxd
4+
cache: false
25
env:
36
global:
47
- LD_PRELOAD=libSegFault.so
@@ -91,11 +94,6 @@ matrix:
9194
- WHEEL_MANYLINUX="1 cp37"
9295
python: '3.7'
9396
arch: amd64
94-
- os: osx
95-
osx_image: xcode11
96-
language: generic
97-
env:
98-
- TOXENV=py38-cover
9997
- env:
10098
- TOXENV=py38-cover,codecov,extension-coveralls,coveralls
10199
python: '3.8'
@@ -104,12 +102,6 @@ matrix:
104102
- TOXENV=py38-cover,codecov,extension-coveralls,coveralls
105103
python: '3.8'
106104
arch: amd64
107-
- os: osx
108-
osx_image: xcode11
109-
language: generic
110-
env:
111-
- TOXENV=py38-nocov
112-
- WHEEL_PATH=.tox/dist
113105
- env:
114106
- TOXENV=py38-nocov
115107
- WHEEL_MANYLINUX="2014-arm cp38"

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,6 @@ To run a subset of tests::
8585

8686
tox -e envname -- pytest -k test_myfeature
8787

88-
To run all the test environments in *parallel* (you need to ``pip install detox``)::
88+
To run all the test environments in *parallel*::
8989

90-
detox
90+
tox -p auto

ci/templates/.appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
version: '{branch}-{build}'
22
build: off
3+
image: Visual Studio 2019
34
environment:
45
global:
56
TWINE_USERNAME: ionel

ci/templates/.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
language: python
2+
dist: xenial
3+
virt: lxd
4+
cache: false
25
env:
36
global:
47
- LD_PRELOAD=libSegFault.so
@@ -14,7 +17,7 @@ matrix:
1417
env:
1518
- TOXENV=docs
1619
{%- for env in tox_environments %}{{ '' }}
17-
{%- if 'py38' in env or 'py27' in env %}{{ '' }}
20+
{%- if 'py39' in env or 'py27' in env %}{{ '' }}
1821
- os: osx
1922
osx_image: xcode11
2023
language: generic

setup.cfg

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ setup_requires =
44

55
[flake8]
66
max-line-length = 140
7-
exclude = .tox,.eggs,ci/templates
7+
exclude = .tox,.eggs,ci/templates,build,dist
88

99
[tool:pytest]
1010
# If a pytest section is found in one of the possible config files
@@ -45,5 +45,4 @@ line_length = 120
4545
known_first_party = lazy_object_proxy
4646
default_section = THIRDPARTY
4747
forced_separate = test_lazy_object_proxy
48-
not_skip = __init__.py
49-
skip = .tox,.eggs,ci/templates
48+
skip = .tox,.eggs,ci/templates,build,dist

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy