Skip to content

Commit 8e4a1f5

Browse files
committed
release version 1.18.0 and update install notes
1 parent 1131d55 commit 8e4a1f5

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Starting with version 1.18, you can switch back to depending on the package
3333
named *paramiko* by setting the environment variable ``PARAMIKO_REPLACE=1``
3434
while installing *fab-classic*::
3535

36-
PARAMIKO_REPLACE=1 pip install --no-binary fab-classic fab-classic==1.17.9b2
36+
PARAMIKO_REPLACE=1 pip install --no-binary fab-classic fab-classic==1.18.0
3737

3838
(*paramiko-ng* also supports ``PARAMIKO_REPLACE``,
3939
see `paramiko-ng#installation <https://github.com/ploxiln/paramiko-ng/#installation>`_)

fabric/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"""
88

99

10-
VERSION = (1, 17, 9, 'beta', 2)
10+
VERSION = (1, 18, 0, 'final', 0)
1111

1212

1313
def git_sha():

sites/docs/installing.rst

+9-1
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,18 @@ to have previously installed them (because *fab-classic* depends on *Paramiko-NG
1111

1212
If you are upgrading *fab-classic* from version 1.15.x to version 1.16 or later,
1313
then you do have "paramiko" installed as a dependency for fab-classic 1.15.x,
14-
and you should uninstall it first:
14+
and you should uninstall it first::
1515

1616
$ pip uninstall paramiko
1717

18+
It is also possible to install *fab-classic* such that it requires "paramiko"
19+
instead of "paramiko-ng"::
20+
21+
PARAMIKO_REPLACE=1 pip install --no-binary fab-classic fab-classic==1.18.0
22+
23+
(*paramiko-ng* also supports ``PARAMIKO_REPLACE``,
24+
see `paramiko-ng#installation <https://github.com/ploxiln/paramiko-ng/#installation>`_)
25+
1826
Advanced users wanting to install a development version may use ``pip`` to grab
1927
the latest master branch (as well as the dev version of the Paramiko-NG dependency)::
2028

0 commit comments

Comments
 (0)