Mercurial > piecrust2
annotate .gitignore @ 1168:10520472cc73
routing: Fix breakages with routing on some versions of Python.
Finally figured what happened with change 6baa94da8b16 (this is a Mercurial
hash by the way if you're looking at the Git mirror). Between Python 3.6 and
3.7 there was a change where the percent sign ('%') went from being escaped by
`re.escape` to _not_ being escaped. So now we need to use different regex
patterns dependin on the Python version, yay.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Fri, 04 Oct 2019 11:13:33 -0700 |
parents | a1b69b320217 |
children |
rev | line source |
---|---|
82
ae90caf26224
Support for installing from Git.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
1 *.pyc |
668
a1b69b320217
cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents:
82
diff
changeset
|
2 *.egg-info |
a1b69b320217
cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents:
82
diff
changeset
|
3 .cache |
a1b69b320217
cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents:
82
diff
changeset
|
4 __pycache__ |
a1b69b320217
cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents:
82
diff
changeset
|
5 venv |
a1b69b320217
cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents:
82
diff
changeset
|
6 tags |
a1b69b320217
cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents:
82
diff
changeset
|
7 bower_components |
a1b69b320217
cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents:
82
diff
changeset
|
8 node_modules |
82
ae90caf26224
Support for installing from Git.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
9 build/lib |
668
a1b69b320217
cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents:
82
diff
changeset
|
10 util/messages/_cache |
a1b69b320217
cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents:
82
diff
changeset
|
11 util/messages/_counter |
a1b69b320217
cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents:
82
diff
changeset
|
12 dist |
a1b69b320217
cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents:
82
diff
changeset
|
13 docs/_cache |
a1b69b320217
cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents:
82
diff
changeset
|
14 docs/_counter |
a1b69b320217
cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents:
82
diff
changeset
|
15 foodtruck/static |
a1b69b320217
cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents:
82
diff
changeset
|
16 piecrust.egg-info |
82
ae90caf26224
Support for installing from Git.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
17 piecrust/__version__.py |
668
a1b69b320217
cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents:
82
diff
changeset
|
18 .ropeproject |
82
ae90caf26224
Support for installing from Git.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
19 |