Skip to content

Commit 4892635

Browse files
committed
minor docs updates now that python-3.6+ required
1 parent 4e6ddf7 commit 4892635

File tree

3 files changed

+6
-15
lines changed

3 files changed

+6
-15
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*fab-classic* is a Python (2.7 or 3.4+) library and command-line tool
1+
*fab-classic* is a Python (3.6+) library and command-line tool
22
for streamlining the use of SSH for application deployment or systems
33
administration tasks.
44

fabric/operations.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1158,9 +1158,9 @@ def local(command, capture=False, shell=None, pty=True, encoding='utf-8'):
11581158
your terminal, but the return value will contain the captured
11591159
stdout/stderr.
11601160
1161-
``encoding`` is used when ``capture=True`` and running under Python-3,
1162-
to decode stdout and stderr. The default is "utf-8". The special value
1163-
"binary" avoids decoding, leaving stdout and stderr as ``bytes``.
1161+
``encoding`` is used when ``capture=True``, to decode stdout and stderr.
1162+
The default is "utf-8". The special value "binary" avoids decoding,
1163+
leaving stdout and stderr as ``bytes``.
11641164
11651165
In either case, as with `~fabric.operations.run` and
11661166
`~fabric.operations.sudo`, this return value exhibits the ``return_code``,

setup.py

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,21 +35,12 @@
3535
'Intended Audience :: System Administrators',
3636
'License :: OSI Approved :: BSD License',
3737
'Operating System :: MacOS :: MacOS X',
38-
'Operating System :: Unix',
3938
'Operating System :: POSIX',
40-
'Programming Language :: Python',
41-
'Programming Language :: Python :: 3.5',
42-
'Programming Language :: Python :: 3.6',
43-
'Programming Language :: Python :: 3.7',
44-
'Programming Language :: Python :: 3.8',
45-
'Programming Language :: Python :: 3.9',
46-
'Programming Language :: Python :: 3.10',
47-
'Topic :: Software Development',
39+
'Operating System :: Unix',
40+
'Programming Language :: Python :: 3',
4841
'Topic :: Software Development :: Build Tools',
49-
'Topic :: Software Development :: Libraries',
5042
'Topic :: Software Development :: Libraries :: Python Modules',
5143
'Topic :: System :: Clustering',
52-
'Topic :: System :: Software Distribution',
5344
'Topic :: System :: Systems Administration',
5445
],
5546
)

0 commit comments

Comments
 (0)