Skip to content

Commit

Permalink
Update python package name
Browse files Browse the repository at this point in the history
The name libiio is not available in pypi since Fedora blocked out future
package names that share the same name as their yum/apt names.
Therefore, we switch to using the name pylibiio for pypi. This change
updates the doc and packaging script.

Signed-off-by: Travis F. Collins <[email protected]>
  • Loading branch information
tfcollins committed Jul 20, 2020
1 parent 740b3f4 commit 08aa2f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bindings/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This package contains the python bindings for libiio, a library for interfacing
libiio is used to interface to the Linux Industrial Input/Output (IIO) Subsystem. The Linux IIO subsystem is intended to provide support for devices that in some sense are analog to digital or digital to analog converters (ADCs, DACs). This includes, but is not limited to ADCs, Accelerometers, Gyros, IMUs, Capacitance to Digital Converters (CDCs), Pressure Sensors, Color, Light and Proximity Sensors, Temperature Sensors, Magnetometers, DACs, DDS (Direct Digital Synthesis), PLLs (Phase Locked Loops), Variable/Programmable Gain Amplifiers (VGA, PGA), and RF transceivers. You can use libiio natively on an embedded Linux target (local mode), or use libiio to communicate remotely to that same target from a host Linux, Windows or MAC over USB or Ethernet or Serial.

[![Build Status](https://travis-ci.org/analogdevicesinc/libiio.svg?branch=master)](https://travis-ci.org/analogdevicesinc/libiio)
[![PyPI version](https://badge.fury.io/py/libiio.svg)](https://badge.fury.io/py/libiio) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/4bd027bfc5774029a30a9e1cedf5a434)](https://www.codacy.com/app/rgetz/libiio?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=analogdevicesinc/libiio&amp;utm_campaign=Badge_Grade)
[![PyPI version](https://badge.fury.io/py/pylibiio.svg)](https://badge.fury.io/py/pylibiio) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/4bd027bfc5774029a30a9e1cedf5a434)](https://www.codacy.com/app/rgetz/libiio?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=analogdevicesinc/libiio&amp;utm_campaign=Badge_Grade)
![open bugs](https://img.shields.io/github/issues/analogdevicesinc/libiio.svg)

[[Docs](https://analogdevicesinc.github.io/libiio/v0.19/python/index.html)]
Expand All @@ -20,7 +20,7 @@ To use these bindings naturally you need the core library they depend upon, libi
### Installing the bindings
To install these bindings there are a few methods. If you already have the library itself and just need the bindings, pip is the most convenient method:
```shell
(sudo) pip install libiio
(sudo) pip install pylibiio
```
If you do not want to use pip, then installation is dependent on your operating system.
#### Linux / macOS
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The libiio python bindings can be installed from pip

.. code-block:: bash
(sudo) pip install libiio
(sudo) pip install pylibiio
or by grabbing the source directly

Expand Down
2 changes: 1 addition & 1 deletion bindings/python/setup.py.cmakein
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class InstallWrapper(install):

config.update(
dict(
name="libiio",
name="pylibiio",
version="${VERSION}",
maintainer="Analog Devices, Inc",
maintainer_email="[email protected]",
Expand Down

0 comments on commit 08aa2f0

Please sign in to comment.