File tree 6 files changed +3
-103
lines changed
src/virtualenv/activation 6 files changed +3
-103
lines changed Original file line number Diff line number Diff line change
1
+ Removed ``xonsh `` activator due to this breaking fairly often the CI and lack of support from those packages
2
+ maintainers, upstream is encouraged to continue supporting the project as a
3
+ `plugin <https://github.com/xonsh/xonsh/issues/3689 >`_ - by :user: `gaborbernat `.
Original file line number Diff line number Diff line change @@ -66,7 +66,6 @@ virtualenv.activate =
66
66
fish = virtualenv.activation.fish:FishActivator
67
67
powershell = virtualenv.activation.powershell:PowerShellActivator
68
68
python = virtualenv.activation.python:PythonActivator
69
- xonsh = virtualenv.activation.xonsh:XonshActivator
70
69
virtualenv.create =
71
70
venv = virtualenv.create.via_global_ref.venv:Venv
72
71
cpython3-posix = virtualenv.create.via_global_ref.builtin.cpython.cpython3:CPython3Posix
@@ -103,15 +102,13 @@ testing =
103
102
pytest-randomly>=1
104
103
pytest-timeout>=1
105
104
packaging>=20.0; python_version>"3.4"
106
- xonsh>=0.9.16; python_version > '3.4' and python_version != '3.9'
107
105
108
106
[options.package_data]
109
107
virtualenv.activation.bash = *.sh
110
108
virtualenv.activation.batch = *.bat
111
109
virtualenv.activation.cshell = *.csh
112
110
virtualenv.activation.fish = *.fish
113
111
virtualenv.activation.powershell = *.ps1
114
- virtualenv.activation.xonsh = *.xsh
115
112
virtualenv.seed.wheels.embed = *.whl
116
113
117
114
[sdist]
Original file line number Diff line number Diff line change 6
6
from .fish import FishActivator
7
7
from .powershell import PowerShellActivator
8
8
from .python import PythonActivator
9
- from .xonsh import XonshActivator
10
9
11
10
__all__ = [
12
11
"BashActivator" ,
13
12
"PowerShellActivator" ,
14
- "XonshActivator" ,
15
13
"CShellActivator" ,
16
14
"PythonActivator" ,
17
15
"BatchActivator" ,
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments