Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ jobs:
- name: Install c++ dependencies (ubuntu)
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get -y install libpcre2-dev libsparsehash-dev doxygen
sudo apt-get -y install libsparsehash-dev doxygen
- name: Install c++ dependencies (macos)
if: startsWith(matrix.os, 'macos')
run: |
brew install pcre2 google-sparsehash doxygen
brew install google-sparsehash doxygen
- name: Set llvm related envvars (macos)
if: startsWith(matrix.os, 'macos')
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
pip install numpy==1.18.1
- name: Install c++ dependencies (ubuntu)
run: |
sudo apt-get -y install libpcre2-dev libsparsehash-dev doxygen
sudo apt-get -y install libsparsehash-dev doxygen
- name: Set gcc envvars
run: |
echo ::set-env name=CC::gcc-8
Expand Down
7 changes: 3 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,8 @@ libpy requires:
- gcc>=8 or clang>=10
- numpy>=1.11.3

libpy also depends on:
libpy also depends on the following system packages:

- pcre
- google sparsehash

To install these dependencies:
Expand All @@ -40,14 +39,14 @@ ubuntu

.. code-block:: bash

$ sudo apt install libpcre2-dev libsparsehash-dev
$ sudo apt install libsparsehash-dev

macOS
~~~~~

.. code-block:: bash

$ brew install pcre2 google-sparsehash
$ brew install google-sparsehash

Install
-------
Expand Down
7 changes: 3 additions & 4 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ lipy requires:
- gcc>=8 or clang>=10
- numpy>=1.11.3

libpy also depends on:
libpy also depends on the following system packages:

- pcre
- google sparsehash

To install these dependencies:
Expand All @@ -26,14 +25,14 @@ ubuntu

.. code-block:: bash

$ sudo apt install libpcre2-dev libsparsehash-dev
$ sudo apt install libsparsehash-dev

macOS
~~~~~

.. code-block:: bash

$ brew install pcre2 google-sparsehash
$ brew install google-sparsehash

Install
-------
Expand Down