Mako template library for Python
Go to file
Petr Viktorin 456d72d8b1 Make python-beaker an optional dependency
Mako can work fine without beaker.
Beaker is the preferred caching backend, so the Fedora
package should pull it in by default, but it should also
be possible to disable it in more restricted environments.

Notes:

* Beaker is not mentioned as a dependency in setup.py.

* Technically the optional dependency works by having
  imports like the following (from mako/ext/beaker_cache.py):

      try:
          from beaker import cache as beaker_cache
      except:
          has_beaker = False
      else:
          has_beaker = True
2018-03-28 15:50:47 +02:00
.gitignore Update to 1.0.6 (#1257376). 2016-12-17 19:52:59 -05:00
python-mako.spec Make python-beaker an optional dependency 2018-03-28 15:50:47 +02:00
sources Update to 1.0.6 (#1257376). 2016-12-17 19:52:59 -05:00