15 lines
355 B
Python
15 lines
355 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from virtualenv.util.path import Path
|
|
|
|
from ..via_template import ViaTemplateActivator
|
|
|
|
|
|
class XonshActivator(ViaTemplateActivator):
|
|
def templates(self):
|
|
yield Path("activate.xsh")
|
|
|
|
@classmethod
|
|
def supports(cls, interpreter):
|
|
return interpreter.version_info >= (3, 5)
|