Skip to content

Commit 4a0387c

Browse files
committed
[README] Py3 updates
1 parent aafcd7c commit 4a0387c

File tree

2 files changed

+14
-16
lines changed

2 files changed

+14
-16
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ font-line is a libre, open source command line tool for OpenType vertical metric
2121

2222
## Quickstart
2323

24-
- Install: `$ pip install font-line`
24+
- Install: `$ pip3 install font-line`
2525
- Metrics Report: `$ font-line report [font path]`
2626
- Modify line spacing: `$ font-line percent [integer %] [font path]`
2727
- Help: `$ font-line --help`
2828

2929
## Install
3030

31-
font-line is built with Python and is tested with Python 2.7 and Python 3.4+ interpreters. You can verify your installed Python version on the command line with the command:
31+
font-line is built with Python and is tested with Python 3.5+ interpreters. You can verify your installed Python version on the command line with the command:
3232

3333
```
34-
$ python --version
34+
$ python3 --version
3535
```
3636

3737
Use either of the following methods to install font-line on your system.
@@ -41,10 +41,10 @@ Use either of the following methods to install font-line on your system.
4141
The latest font-line release is available through the Python Package Index and can be installed with pip:
4242

4343
```
44-
$ pip install font-line
44+
$ pip3 install font-line
4545
```
4646

47-
To upgrade to a new version of font-line after a pip install, use the command `pip install --upgrade font-line`.
47+
To upgrade to a new version of font-line after a pip install, use the command `pip3 install --upgrade font-line`.
4848

4949
### Download Project Repository and Install
5050

@@ -57,7 +57,7 @@ git clone https://github.com/source-foundry/font-line.git
5757
Navigate to the top level repository directory and enter the following command:
5858

5959
```
60-
$ python setup.py install
60+
$ pip3 install .
6161
```
6262

6363
Follow the same instructions to upgrade to a new version of the application if you install with this approach.
@@ -237,7 +237,7 @@ Please [submit a new issue report](https://github.com/source-foundry/font-line/i
237237

238238
## Acknowledgments
239239

240-
font-line is built with the fantastic [fontTools](https://github.com/behdad/fonttools) Python library.
240+
font-line is built with the fantastic [fontTools](https://github.com/fonttools/fonttools) Python library.
241241

242242

243243
## License

docs/README.rst

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,19 @@ Contents
3333
Quickstart
3434
~~~~~~~~~~
3535

36-
- Install: ``$ pip install font-line``
36+
- Install: ``$ pip3 install font-line``
3737
- Metrics Report: ``$ font-line report [font path]``
3838
- Modify line spacing: ``$font-line percent [integer %] [font path]``
3939

4040
Install
4141
~~~~~~~
4242

43-
font-line is built with Python and can be used on systems with Python
44-
2.7+ and Python 3.3+ interpreters, including current releases of pypy
45-
and pypy3. You can verify your installed Python version on the command
43+
font-line is built with Python and can be used on systems with Python 3.5+ interpreters. You can verify your installed Python version on the command
4644
line with the command:
4745

4846
::
4947

50-
$ python --version
48+
$ python3 --version
5149

5250
Use either of the following methods to install font-line on your system.
5351

@@ -59,10 +57,10 @@ Index and can be installed with pip:
5957

6058
::
6159

62-
$ pip install font-line
60+
$ pip3 install font-line
6361

6462
To upgrade to a new version of font-line after a pip install, use the
65-
command ``pip install --upgrade font-line``.
63+
command ``pip3 install --upgrade font-line``.
6664

6765
Download Project Repository and Install
6866
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -81,7 +79,7 @@ command:
8179

8280
::
8381

84-
$ python setup.py install
82+
$ pip3 install .
8583

8684
Follow the same instructions to upgrade to a new version of the
8785
application if you elect to install with this approach.
@@ -325,7 +323,7 @@ Acknowledgments
325323
~~~~~~~~~~~~~~~
326324

327325
font-line is built with the fantastic
328-
`fontTools <https://github.com/behdad/fonttools>`__ Python library.
326+
`fontTools <https://github.com/fonttools/fonttools>`__ Python library.
329327

330328
.. |Build Status| image:: https://semaphoreci.com/api/v1/sourcefoundry/font-line/branches/master/badge.svg
331329
:target: https://semaphoreci.com/sourcefoundry/font-line

0 commit comments

Comments
 (0)