]> git.ipfire.org Git - thirdparty/jinja.git/log
thirdparty/jinja.git
3 years agoupdate docs requirements 1544/head
David Lord [Wed, 10 Nov 2021 19:05:12 +0000 (11:05 -0800)] 
update docs requirements

new version of pallets-sphinx-themes to address removals

3 years agoremove deprecated unicode_urlencode
David Lord [Tue, 9 Nov 2021 20:52:27 +0000 (12:52 -0800)] 
remove deprecated unicode_urlencode

3 years agoremove deprecated legacy resolve mode for context subclass
David Lord [Tue, 9 Nov 2021 20:50:28 +0000 (12:50 -0800)] 
remove deprecated legacy resolve mode for context subclass

3 years agoremove deprecated unicode_join runtime alias
David Lord [Tue, 9 Nov 2021 20:46:20 +0000 (12:46 -0800)] 
remove deprecated unicode_join runtime alias

3 years agoremove deprecated Markup and escape aliases
David Lord [Tue, 9 Nov 2021 20:44:30 +0000 (12:44 -0800)] 
remove deprecated Markup and escape aliases

3 years agoremove deprecated template function decorators
David Lord [Tue, 9 Nov 2021 20:42:59 +0000 (12:42 -0800)] 
remove deprecated template function decorators

3 years agoremove deprecated extensions
David Lord [Tue, 9 Nov 2021 20:37:01 +0000 (12:37 -0800)] 
remove deprecated extensions

3 years agoMerge branch '3.0.x'
David Lord [Tue, 9 Nov 2021 20:28:39 +0000 (12:28 -0800)] 
Merge branch '3.0.x'

3 years agoMerge pull request #1543 from pallets/release-3.0.3 3.0.3
David Lord [Tue, 9 Nov 2021 20:25:09 +0000 (12:25 -0800)] 
Merge pull request #1543 from pallets/release-3.0.3

release version 3.0.3

3 years agorelease version 3.0.3 1543/head
David Lord [Tue, 9 Nov 2021 20:22:19 +0000 (12:22 -0800)] 
release version 3.0.3

3 years agoMerge pull request #1542 from pallets/package-loader-file
David Lord [Tue, 9 Nov 2021 20:21:05 +0000 (12:21 -0800)] 
Merge pull request #1542 from pallets/package-loader-file

PackageLoader works with single module file

3 years agoPackageLoader works with single module file 1542/head
David Lord [Tue, 9 Nov 2021 20:14:48 +0000 (12:14 -0800)] 
PackageLoader works with single module file

3 years agoMerge pull request #1541 from pallets/docs-pow-order
David Lord [Tue, 9 Nov 2021 18:54:26 +0000 (10:54 -0800)] 
Merge pull request #1541 from pallets/docs-pow-order

document chained pow order

3 years agodocument chained pow order 1541/head
David Lord [Tue, 9 Nov 2021 18:50:35 +0000 (10:50 -0800)] 
document chained pow order

3 years agoMerge pull request #1540 from pallets/docs-macro-defaults
David Lord [Tue, 9 Nov 2021 18:35:56 +0000 (10:35 -0800)] 
Merge pull request #1540 from pallets/docs-macro-defaults

rewrite docs about extending template objects

3 years agorewrite docs about extending template objects 1540/head
David Lord [Tue, 9 Nov 2021 18:32:06 +0000 (10:32 -0800)] 
rewrite docs about extending template objects

3 years agoMerge pull request #1539 from pallets/docs-macro-defaults
David Lord [Tue, 9 Nov 2021 18:15:16 +0000 (10:15 -0800)] 
Merge pull request #1539 from pallets/docs-macro-defaults

remove reference to macro.defaults

3 years agoremove reference to macro.defaults 1539/head
David Lord [Tue, 9 Nov 2021 18:13:10 +0000 (10:13 -0800)] 
remove reference to macro.defaults

3 years agoMerge pull request #1538 from pallets/docs-template
David Lord [Tue, 9 Nov 2021 18:10:05 +0000 (10:10 -0800)] 
Merge pull request #1538 from pallets/docs-template

rewrite Template class doc

3 years agorewrite Template class doc 1538/head
David Lord [Tue, 9 Nov 2021 18:05:35 +0000 (10:05 -0800)] 
rewrite Template class doc

3 years agoMerge pull request #1509 from kianmeng/fix-typos
David Lord [Tue, 9 Nov 2021 17:17:51 +0000 (09:17 -0800)] 
Merge pull request #1509 from kianmeng/fix-typos

Fix typos

3 years agoMerge pull request #1522 from klette/fix-node-hash
David Lord [Tue, 9 Nov 2021 17:16:49 +0000 (09:16 -0800)] 
Merge pull request #1522 from klette/fix-node-hash

Use `object.__hash__` for `Node.__hash__`

3 years agoUse object.__hash__ for Node.__hash__ 1522/head
Kristian Klette [Wed, 27 Oct 2021 18:35:20 +0000 (20:35 +0200)] 
Use object.__hash__ for Node.__hash__

This fixes a regression in commit 60293416db69782fd048a7820667afa4ae7c423b that
changed the `__hash__` implementation of Node from the default pointer
hash, to a hash based on the node fields.

Since these fields contains list objects, they are not hashable, making
every call to `Node.__hash__` fail.

This breaks some third-party usage such as in `django-compressor`
(See: https://github.com/django-compressor/django-compressor/issues/1060)

This changed reverts the hash method back to using `object.__hash__` as
the hash implementation.

3 years agoMerge pull request #1516 from mohd-akram/async-perf
David Lord [Tue, 9 Nov 2021 16:54:15 +0000 (08:54 -0800)] 
Merge pull request #1516 from mohd-akram/async-perf

Reduce async overhead due to auto_await

3 years agoReduce async overhead due to auto_await 1516/head
Mohamed Akram [Mon, 18 Oct 2021 19:58:54 +0000 (23:58 +0400)] 
Reduce async overhead due to auto_await

3 years agoMerge pull request #1537 from mkrizek/literal_eval-py-310
David Lord [Tue, 9 Nov 2021 16:46:33 +0000 (08:46 -0800)] 
Merge pull request #1537 from mkrizek/literal_eval-py-310

native: keep same behavior on Python 3.10

3 years agonative: keep same behavior on Python 3.10 1537/head
Martin Krizek [Tue, 9 Nov 2021 16:15:31 +0000 (17:15 +0100)] 
native: keep same behavior on Python 3.10

3 years agoMerge pull request #1536 from pallets/traceback-codetype
David Lord [Tue, 9 Nov 2021 16:27:21 +0000 (08:27 -0800)] 
Merge pull request #1536 from pallets/traceback-codetype

simplify CodeType rewriting

3 years agosimplify CodeType rewriting 1536/head
David Lord [Tue, 9 Nov 2021 15:10:53 +0000 (07:10 -0800)] 
simplify CodeType rewriting

3 years agoMerge pull request #1534 from pallets/drop-python-3.6
David Lord [Mon, 8 Nov 2021 16:23:31 +0000 (08:23 -0800)] 
Merge pull request #1534 from pallets/drop-python-3.6

drop Python 3.6

3 years agodrop Python 3.6 1534/head
David Lord [Mon, 8 Nov 2021 16:07:29 +0000 (08:07 -0800)] 
drop Python 3.6

3 years agoMerge branch '3.0.x'
David Lord [Fri, 5 Nov 2021 14:22:41 +0000 (07:22 -0700)] 
Merge branch '3.0.x'

3 years agoMerge pull request #1527 from hroncok/py3.11-tracebacks
David Lord [Fri, 5 Nov 2021 14:22:28 +0000 (07:22 -0700)] 
Merge pull request #1527 from hroncok/py3.11-tracebacks

Tests: Adapt expected traceback regexes for Python 3.11.0a1

3 years agoTests: Adapt expected traceback regexes for Python 3.11.0a1 1527/head
Miro Hrončok [Thu, 4 Nov 2021 17:03:06 +0000 (18:03 +0100)] 
Tests: Adapt expected traceback regexes for Python 3.11.0a1

Fixes https://github.com/pallets/jinja/issues/1526

Before:

      File ".../broken.html", line 2, in <module>
        {{ fail() }}
      File ".../test_debug.py", line 32, in <lambda>
        tmpl.render(fail=lambda: 1 / 0)
    ZeroDivisionError: division by zero

After:

      File ".../broken.html", line 2, in <module>
        {{ fail() }}
        ^^^^^^^^^^^^
      File ".../test_debug.py", line 32, in <lambda>
        tmpl.render(fail=lambda: 1 / 0)
                                 ~~^~~
    ZeroDivisionError: division by zero

3 years agoMerge pull request #1531 from pallets/test-3.11
David Lord [Fri, 5 Nov 2021 14:18:41 +0000 (07:18 -0700)] 
Merge pull request #1531 from pallets/test-3.11

test Python 3.11

3 years agotest Python 3.11 1531/head
David Lord [Fri, 5 Nov 2021 14:15:25 +0000 (07:15 -0700)] 
test Python 3.11

3 years agoupdate py==1.11.0 to work on Python 3.11
David Lord [Fri, 5 Nov 2021 14:13:12 +0000 (07:13 -0700)] 
update py==1.11.0 to work on Python 3.11

3 years agoMerge branch '3.0.x'
David Lord [Fri, 5 Nov 2021 13:46:22 +0000 (06:46 -0700)] 
Merge branch '3.0.x'

3 years agoMerge pull request #1530 from pallets/test-3.10
David Lord [Fri, 5 Nov 2021 13:45:06 +0000 (06:45 -0700)] 
Merge pull request #1530 from pallets/test-3.10

test Python 3.10

3 years agotest Python 3.10 1530/head
David Lord [Fri, 5 Nov 2021 13:32:06 +0000 (06:32 -0700)] 
test Python 3.10

3 years agoMerge pull request #1525 from hroncok/patch-1
David Lord [Tue, 2 Nov 2021 16:25:12 +0000 (09:25 -0700)] 
Merge pull request #1525 from hroncok/patch-1

Tests: Make "Traceback did not match" an actual f-string

3 years agoTests: Make "Traceback did not match" an actual f-string 1525/head
Miro Hrončok [Tue, 2 Nov 2021 15:47:28 +0000 (16:47 +0100)] 
Tests: Make "Traceback did not match" an actual f-string

Otherwise the failure looks like this:

    >       assert (
                m is not None
            ), "Traceback did not match:\n\n{''.join(tb)}\nexpected:\n{expected_tb}"
    E       AssertionError: Traceback did not match:
    E
    E         {''.join(tb)}
    E         expected:
    E         {expected_tb}
    E       assert None is not None

3 years agoMerge branch '3.0.x'
David Lord [Mon, 1 Nov 2021 19:48:16 +0000 (12:48 -0700)] 
Merge branch '3.0.x'

3 years agoMerge pull request #1524 from pallets/update-requirements
David Lord [Mon, 1 Nov 2021 19:47:56 +0000 (12:47 -0700)] 
Merge pull request #1524 from pallets/update-requirements

update requirements

3 years agoupdate requirements 1524/head
David Lord [Mon, 1 Nov 2021 19:44:28 +0000 (12:44 -0700)] 
update requirements

3 years agoFix typos 1509/head
Kian-Meng, Ang [Tue, 12 Oct 2021 14:36:44 +0000 (22:36 +0800)] 
Fix typos

3 years agoMerge branch '3.0.x'
David Lord [Tue, 5 Oct 2021 00:54:36 +0000 (17:54 -0700)] 
Merge branch '3.0.x'

3 years agoMerge pull request #1506 from pallets/release-3.0.2 3.0.2
David Lord [Tue, 5 Oct 2021 00:53:10 +0000 (17:53 -0700)] 
Merge pull request #1506 from pallets/release-3.0.2

release version 3.0.2

3 years agorelease version 3.0.2 1506/head
David Lord [Tue, 5 Oct 2021 00:48:23 +0000 (17:48 -0700)] 
release version 3.0.2

3 years agoMerge pull request #1505 from pallets/package-loader-path
David Lord [Tue, 5 Oct 2021 00:45:34 +0000 (17:45 -0700)] 
Merge pull request #1505 from pallets/package-loader-path

omit curdir from PackageLoader root path

3 years agoomit curdir from PackageLoader root path 1505/head
David Lord [Tue, 5 Oct 2021 00:39:39 +0000 (17:39 -0700)] 
omit curdir from PackageLoader root path

fixes compatibility with zip imports

Co-authored-by: kuepe-sl <peter_kueffner@web.de>
3 years agoMerge pull request #1495 from daniel-stoneuk/patch-async-globals
David Lord [Mon, 4 Oct 2021 20:51:05 +0000 (13:51 -0700)] 
Merge pull request #1495 from daniel-stoneuk/patch-async-globals

3 years agoimported macros can access template globals in async mode 1495/head
Daniel Stone [Sat, 18 Sep 2021 15:24:10 +0000 (16:24 +0100)] 
imported macros can access template globals in async mode

3 years agoMerge branch '3.0.x'
David Lord [Mon, 4 Oct 2021 20:28:06 +0000 (13:28 -0700)] 
Merge branch '3.0.x'

3 years agoMerge pull request #1504 from pallets/update-requirements
David Lord [Mon, 4 Oct 2021 20:25:34 +0000 (13:25 -0700)] 
Merge pull request #1504 from pallets/update-requirements

update requirements

3 years agoapply pyupgrade 1504/head
David Lord [Mon, 4 Oct 2021 20:22:49 +0000 (13:22 -0700)] 
apply pyupgrade

3 years agoupdate pre-commit hooks
David Lord [Mon, 4 Oct 2021 20:22:34 +0000 (13:22 -0700)] 
update pre-commit hooks

3 years agoupdate requirements
David Lord [Mon, 4 Oct 2021 20:22:22 +0000 (13:22 -0700)] 
update requirements

3 years agoMerge pull request #1503 from pallets/except-chain
David Lord [Mon, 4 Oct 2021 20:19:54 +0000 (13:19 -0700)] 
Merge pull request #1503 from pallets/except-chain

use exception chaining

3 years agouse exception chaining 1503/head
David Lord [Mon, 4 Oct 2021 20:16:13 +0000 (13:16 -0700)] 
use exception chaining

fixes flake8-bugbear B904

3 years agoMerge pull request #1501 from pallets/ignore-internal-warning
David Lord [Mon, 4 Oct 2021 19:47:32 +0000 (12:47 -0700)] 
Merge pull request #1501 from pallets/ignore-internal-warning

ignore internal asyncio warning

3 years agoignore internal asyncio warning 1501/head
David Lord [Mon, 4 Oct 2021 19:19:05 +0000 (12:19 -0700)] 
ignore internal asyncio warning

https://bugs.python.org/issue45097

3 years agoMerge pull request #1492 from pallets/pre-commit-ci-update-config
David Lord [Wed, 8 Sep 2021 15:19:10 +0000 (08:19 -0700)] 
Merge pull request #1492 from pallets/pre-commit-ci-update-config

[pre-commit.ci] pre-commit autoupdate

3 years ago[pre-commit.ci] pre-commit autoupdate 1492/head
pre-commit-ci[bot] [Mon, 6 Sep 2021 19:09:13 +0000 (19:09 +0000)] 
[pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/asottile/pyupgrade: v2.23.1 → v2.25.0](https://github.com/asottile/pyupgrade/compare/v2.23.1...v2.25.0)
- [github.com/psf/black: 21.7b0 → 21.8b0](https://github.com/psf/black/compare/21.7b0...21.8b0)

3 years agoMerge pull request #1490 from pallets/dependabot/pip/tox-3.24.3
David Lord [Wed, 1 Sep 2021 15:30:13 +0000 (08:30 -0700)] 
Merge pull request #1490 from pallets/dependabot/pip/tox-3.24.3

Bump tox from 3.24.1 to 3.24.3

3 years agoBump tox from 3.24.1 to 3.24.3 1490/head
dependabot[bot] [Wed, 1 Sep 2021 15:19:50 +0000 (15:19 +0000)] 
Bump tox from 3.24.1 to 3.24.3

Bumps [tox](https://github.com/tox-dev/tox) from 3.24.1 to 3.24.3.
- [Release notes](https://github.com/tox-dev/tox/releases)
- [Changelog](https://github.com/tox-dev/tox/blob/master/docs/changelog.rst)
- [Commits](https://github.com/tox-dev/tox/compare/3.24.1...3.24.3)

---
updated-dependencies:
- dependency-name: tox
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agoMerge pull request #1489 from pallets/dependabot/pip/pre-commit-2.14.1
David Lord [Wed, 1 Sep 2021 15:17:04 +0000 (08:17 -0700)] 
Merge pull request #1489 from pallets/dependabot/pip/pre-commit-2.14.1

Bump pre-commit from 2.13.0 to 2.14.1

3 years agoMerge pull request #1491 from pallets/dependabot/pip/pytest-6.2.5
David Lord [Wed, 1 Sep 2021 15:16:54 +0000 (08:16 -0700)] 
Merge pull request #1491 from pallets/dependabot/pip/pytest-6.2.5

Bump pytest from 6.2.4 to 6.2.5

3 years agoBump pytest from 6.2.4 to 6.2.5 1491/head
dependabot[bot] [Wed, 1 Sep 2021 08:03:33 +0000 (08:03 +0000)] 
Bump pytest from 6.2.4 to 6.2.5

Bumps [pytest](https://github.com/pytest-dev/pytest) from 6.2.4 to 6.2.5.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest/compare/6.2.4...6.2.5)

---
updated-dependencies:
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agoBump pre-commit from 2.13.0 to 2.14.1 1489/head
dependabot[bot] [Wed, 1 Sep 2021 08:02:33 +0000 (08:02 +0000)] 
Bump pre-commit from 2.13.0 to 2.14.1

Bumps [pre-commit](https://github.com/pre-commit/pre-commit) from 2.13.0 to 2.14.1.
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/master/CHANGELOG.md)
- [Commits](https://github.com/pre-commit/pre-commit/compare/v2.13.0...v2.14.1)

---
updated-dependencies:
- dependency-name: pre-commit
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agoreplace http with https in docs
nabbisen [Sat, 28 Aug 2021 05:56:11 +0000 (14:56 +0900)] 
replace http with https in docs

3 years agoMerge remote-tracking branch 'origin/3.0.x'
David Lord [Tue, 10 Aug 2021 13:34:22 +0000 (06:34 -0700)] 
Merge remote-tracking branch 'origin/3.0.x'

3 years agoMerge pull request #1482 from esadek/pip_link
David Lord [Tue, 10 Aug 2021 13:18:48 +0000 (06:18 -0700)] 
Merge pull request #1482 from esadek/pip_link

update pip link

3 years agoupdate pip link 1482/head
Emil Sadek [Mon, 9 Aug 2021 07:08:47 +0000 (00:08 -0700)] 
update pip link

3 years agoMerge pull request #1455 from ewjoachim/undefined-contains-1204
David Lord [Mon, 9 Aug 2021 18:10:01 +0000 (11:10 -0700)] 
Merge pull request #1455 from ewjoachim/undefined-contains-1204

Only StrictUndefined.__contains__ raises error

3 years agoFixes #1448: Revert Undefined.__contains__ to 2.x behaviour 1455/head
Joachim Jablon [Wed, 26 May 2021 09:54:58 +0000 (11:54 +0200)] 
Fixes #1448: Revert Undefined.__contains__ to 2.x behaviour

3 years agoMerge pull request #1454 from atetubou/deterministic_test
David Lord [Mon, 9 Aug 2021 18:00:30 +0000 (11:00 -0700)] 
Merge pull request #1454 from atetubou/deterministic_test

make compile_templates deterministic

3 years agomake compile_templates deterministic 1454/head
Takuto Ikuta [Wed, 26 May 2021 08:09:33 +0000 (17:09 +0900)] 
make compile_templates deterministic

Python3 doesn't keep insertion order for set(), so this sorts some
places for deterministic output for compiled template.

3 years agoMerge pull request #1449 from amy-lei/loop-scoping
David Lord [Mon, 9 Aug 2021 17:19:58 +0000 (10:19 -0700)] 
Merge pull request #1449 from amy-lei/loop-scoping

fix loop scoping bug

4 years agoMerge pull request #1479 from pallets/dependabot/pip/tox-3.24.1
David Lord [Tue, 3 Aug 2021 13:59:26 +0000 (06:59 -0700)] 
Merge pull request #1479 from pallets/dependabot/pip/tox-3.24.1

Bump tox from 3.23.1 to 3.24.1

4 years agoMerge pull request #1480 from pallets/pre-commit-ci-update-config
David Lord [Tue, 3 Aug 2021 13:12:27 +0000 (06:12 -0700)] 
Merge pull request #1480 from pallets/pre-commit-ci-update-config

[pre-commit.ci] pre-commit autoupdate

4 years ago[pre-commit.ci] auto fixes from pre-commit.com hooks 1480/head
pre-commit-ci[bot] [Mon, 2 Aug 2021 18:54:02 +0000 (18:54 +0000)] 
[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

4 years ago[pre-commit.ci] pre-commit autoupdate
pre-commit-ci[bot] [Mon, 2 Aug 2021 18:50:31 +0000 (18:50 +0000)] 
[pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/asottile/pyupgrade: v2.20.0 → v2.23.1](https://github.com/asottile/pyupgrade/compare/v2.20.0...v2.23.1)
- [github.com/asottile/reorder_python_imports: v2.5.0 → v2.6.0](https://github.com/asottile/reorder_python_imports/compare/v2.5.0...v2.6.0)
- [github.com/psf/black: 21.6b0 → 21.7b0](https://github.com/psf/black/compare/21.6b0...21.7b0)

4 years agoBump tox from 3.23.1 to 3.24.1 1479/head
dependabot[bot] [Sun, 1 Aug 2021 08:08:17 +0000 (08:08 +0000)] 
Bump tox from 3.23.1 to 3.24.1

Bumps [tox](https://github.com/tox-dev/tox) from 3.23.1 to 3.24.1.
- [Release notes](https://github.com/tox-dev/tox/releases)
- [Changelog](https://github.com/tox-dev/tox/blob/master/docs/changelog.rst)
- [Commits](https://github.com/tox-dev/tox/compare/3.23.1...3.24.1)

---
updated-dependencies:
- dependency-name: tox
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
4 years agoMerge pull request #1472 from pallets/pre-commit-ci-update-config
David Lord [Tue, 6 Jul 2021 13:34:37 +0000 (06:34 -0700)] 
Merge pull request #1472 from pallets/pre-commit-ci-update-config

[pre-commit.ci] pre-commit autoupdate

4 years ago[pre-commit.ci] pre-commit autoupdate 1472/head
pre-commit-ci[bot] [Mon, 5 Jul 2021 22:13:33 +0000 (22:13 +0000)] 
[pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/asottile/pyupgrade: v2.15.0 → v2.20.0](https://github.com/asottile/pyupgrade/compare/v2.15.0...v2.20.0)
- [github.com/psf/black: 21.5b1 → 21.6b0](https://github.com/psf/black/compare/21.5b1...21.6b0)
- [github.com/pre-commit/pre-commit-hooks: v3.4.0 → v4.0.1](https://github.com/pre-commit/pre-commit-hooks/compare/v3.4.0...v4.0.1)

4 years agoMerge pull request #1469 from pallets/dependabot/pip/pip-tools-6.2.0
David Lord [Thu, 1 Jul 2021 12:57:43 +0000 (05:57 -0700)] 
Merge pull request #1469 from pallets/dependabot/pip/pip-tools-6.2.0

Bump pip-tools from 6.1.0 to 6.2.0

4 years agoBump pip-tools from 6.1.0 to 6.2.0 1469/head
dependabot[bot] [Thu, 1 Jul 2021 12:53:16 +0000 (12:53 +0000)] 
Bump pip-tools from 6.1.0 to 6.2.0

Bumps [pip-tools](https://github.com/jazzband/pip-tools) from 6.1.0 to 6.2.0.
- [Release notes](https://github.com/jazzband/pip-tools/releases)
- [Changelog](https://github.com/jazzband/pip-tools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jazzband/pip-tools/compare/6.1.0...6.2.0)

---
updated-dependencies:
- dependency-name: pip-tools
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
4 years agoMerge pull request #1470 from pallets/dependabot/pip/mypy-0.910
David Lord [Thu, 1 Jul 2021 12:52:03 +0000 (05:52 -0700)] 
Merge pull request #1470 from pallets/dependabot/pip/mypy-0.910

Bump mypy from 0.812 to 0.910

4 years agoBump mypy from 0.812 to 0.910 1470/head
dependabot[bot] [Thu, 1 Jul 2021 08:04:09 +0000 (08:04 +0000)] 
Bump mypy from 0.812 to 0.910

Bumps [mypy](https://github.com/python/mypy) from 0.812 to 0.910.
- [Release notes](https://github.com/python/mypy/releases)
- [Commits](https://github.com/python/mypy/compare/v0.812...v0.910)

---
updated-dependencies:
- dependency-name: mypy
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
4 years agoMerge pull request #1457 from pallets/dependabot/pip/pre-commit-2.13.0
David Lord [Tue, 1 Jun 2021 13:33:53 +0000 (06:33 -0700)] 
Merge pull request #1457 from pallets/dependabot/pip/pre-commit-2.13.0

Bump pre-commit from 2.12.1 to 2.13.0

4 years agoBump pre-commit from 2.12.1 to 2.13.0 1457/head
dependabot[bot] [Tue, 1 Jun 2021 08:05:07 +0000 (08:05 +0000)] 
Bump pre-commit from 2.12.1 to 2.13.0

Bumps [pre-commit](https://github.com/pre-commit/pre-commit) from 2.12.1 to 2.13.0.
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/master/CHANGELOG.md)
- [Commits](https://github.com/pre-commit/pre-commit/compare/v2.12.1...v2.13.0)

Signed-off-by: dependabot[bot] <support@github.com>
4 years agoMerge pull request #1451 from greyli/improve-contributing-guide
David Lord [Tue, 25 May 2021 13:44:22 +0000 (06:44 -0700)] 
Merge pull request #1451 from greyli/improve-contributing-guide

Improve the contributing guide

4 years agoImprove the contributing guide 1451/head
Grey Li [Mon, 24 May 2021 08:59:22 +0000 (16:59 +0800)] 
Improve the contributing guide

4 years agoclear assignments in loops at end of iteration 1449/head
Amy [Fri, 21 May 2021 17:56:58 +0000 (13:56 -0400)] 
clear assignments in loops at end of iteration

4 years agoMerge branch '3.0.x'
David Lord [Fri, 21 May 2021 03:53:16 +0000 (20:53 -0700)] 
Merge branch '3.0.x'

4 years agoMerge pull request #1447 from pallets/update-theme
David Lord [Fri, 21 May 2021 03:52:48 +0000 (20:52 -0700)] 
Merge pull request #1447 from pallets/update-theme

Update theme

4 years agoupdate pallets and sphinx requirements 1447/head
David Lord [Fri, 21 May 2021 03:49:38 +0000 (20:49 -0700)] 
update pallets and sphinx requirements

4 years agoupdate pallets-sphinx-themes
David Lord [Fri, 21 May 2021 03:48:16 +0000 (20:48 -0700)] 
update pallets-sphinx-themes

4 years agoMerge branch '3.0.x'
David Lord [Tue, 18 May 2021 20:40:36 +0000 (13:40 -0700)] 
Merge branch '3.0.x'