annotate .hgignore @ 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 d8167cbee2f5
children aec9c6367c33
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a212a3f2e3ee Initial commit.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
1 syntax: glob
a212a3f2e3ee Initial commit.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
2 *.pyc
477
01f514e9e47a cm: Ignore `.egg-info` stuff.
Ludovic Chabant <ludovic@chabant.com>
parents: 443
diff changeset
3 *.egg-info
668
a1b69b320217 cm: Ignore `py.test` cache.
Ludovic Chabant <ludovic@chabant.com>
parents: 587
diff changeset
4 .cache
1161
356ffb974e47 cm: Update hgignore.
Ludovic Chabant <ludovic@chabant.com>
parents: 1093
diff changeset
5 .eggs
1166
d8167cbee2f5 cm: Add new pytest cache dirs to hgignore.
Ludovic Chabant <ludovic@chabant.com>
parents: 1161
diff changeset
6 .pytest_cache
d8167cbee2f5 cm: Add new pytest cache dirs to hgignore.
Ludovic Chabant <ludovic@chabant.com>
parents: 1161
diff changeset
7 .python-version
587
d4a01a023998 admin: Add "FoodTruck" admin panel from the side experiment project.
Ludovic Chabant <ludovic@chabant.com>
parents: 538
diff changeset
8 __pycache__
0
a212a3f2e3ee Initial commit.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
9 venv
3
f485ba500df3 Gigantic change to basically make PieCrust 2 vaguely functional.
Ludovic Chabant <ludovic@chabant.com>
parents: 0
diff changeset
10 tags
587
d4a01a023998 admin: Add "FoodTruck" admin panel from the side experiment project.
Ludovic Chabant <ludovic@chabant.com>
parents: 538
diff changeset
11 bower_components
d4a01a023998 admin: Add "FoodTruck" admin panel from the side experiment project.
Ludovic Chabant <ludovic@chabant.com>
parents: 538
diff changeset
12 node_modules
71
79f14718ffec Ignore `setuptools` build directory.
Ludovic Chabant <ludovic@chabant.com>
parents: 9
diff changeset
13 build/lib
688
e86568a7434d cm: Ignore bdist output directory.
Ludovic Chabant <ludovic@chabant.com>
parents: 668
diff changeset
14 build/bdist*
443
6b9f59b19db7 cm: Move build directory to util to avoid conflicts with pip.
Ludovic Chabant <ludovic@chabant.com>
parents: 243
diff changeset
15 util/messages/_cache
6b9f59b19db7 cm: Move build directory to util to avoid conflicts with pip.
Ludovic Chabant <ludovic@chabant.com>
parents: 243
diff changeset
16 util/messages/_counter
9
8f7ba2c95025 Add packaging and related files.
Ludovic Chabant <ludovic@chabant.com>
parents: 3
diff changeset
17 dist
243
26e59f837558 docs: Add embryo of a documentation website.
Ludovic Chabant <ludovic@chabant.com>
parents: 131
diff changeset
18 docs/_cache
26e59f837558 docs: Add embryo of a documentation website.
Ludovic Chabant <ludovic@chabant.com>
parents: 131
diff changeset
19 docs/_counter
1073
cb01131dedf5 cm: Ignore documentation counter.
Ludovic Chabant <ludovic@chabant.com>
parents: 688
diff changeset
20 _docs-counter
587
d4a01a023998 admin: Add "FoodTruck" admin panel from the side experiment project.
Ludovic Chabant <ludovic@chabant.com>
parents: 538
diff changeset
21 foodtruck/static
9
8f7ba2c95025 Add packaging and related files.
Ludovic Chabant <ludovic@chabant.com>
parents: 3
diff changeset
22 piecrust.egg-info
8f7ba2c95025 Add packaging and related files.
Ludovic Chabant <ludovic@chabant.com>
parents: 3
diff changeset
23 piecrust/__version__.py
1093
37735b7e2a3a cm: Ignore temp test files.
Ludovic Chabant <ludovic@chabant.com>
parents: 1073
diff changeset
24 tests/__tmpfs__
538
423f06934358 cm: Ignore Rope cache.
Ludovic Chabant <ludovic@chabant.com>
parents: 502
diff changeset
25 .ropeproject
0
a212a3f2e3ee Initial commit.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
26