Skip to content

Commit 3f501bb

Browse files
Joe Jevnikllllllllll
authored andcommitted
DOC: remove references to pcre2 dependency
1 parent c400560 commit 3f501bb

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ jobs:
5757
- name: Install c++ dependencies (ubuntu)
5858
if: startsWith(matrix.os, 'ubuntu')
5959
run: |
60-
sudo apt-get -y install libpcre2-dev libsparsehash-dev doxygen
60+
sudo apt-get -y install libsparsehash-dev doxygen
6161
- name: Install c++ dependencies (macos)
6262
if: startsWith(matrix.os, 'macos')
6363
run: |
64-
brew install pcre2 google-sparsehash doxygen
64+
brew install google-sparsehash doxygen
6565
- name: Set llvm related envvars (macos)
6666
if: startsWith(matrix.os, 'macos')
6767
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
pip install numpy==1.18.1
2424
- name: Install c++ dependencies (ubuntu)
2525
run: |
26-
sudo apt-get -y install libpcre2-dev libsparsehash-dev doxygen
26+
sudo apt-get -y install libsparsehash-dev doxygen
2727
- name: Set gcc envvars
2828
run: |
2929
echo ::set-env name=CC::gcc-8

README.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ libpy requires:
2828
- gcc>=8 or clang>=10
2929
- numpy>=1.11.3
3030

31-
libpy also depends on:
31+
libpy also depends on the following system packages:
3232

33-
- pcre
3433
- google sparsehash
3534

3635
To install these dependencies:
@@ -40,14 +39,14 @@ ubuntu
4039

4140
.. code-block:: bash
4241
43-
$ sudo apt install libpcre2-dev libsparsehash-dev
42+
$ sudo apt install libsparsehash-dev
4443
4544
macOS
4645
~~~~~
4746

4847
.. code-block:: bash
4948
50-
$ brew install pcre2 google-sparsehash
49+
$ brew install google-sparsehash
5150
5251
Install
5352
-------

docs/source/install.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ lipy requires:
1414
- gcc>=8 or clang>=10
1515
- numpy>=1.11.3
1616

17-
libpy also depends on:
17+
libpy also depends on the following system packages:
1818

19-
- pcre
2019
- google sparsehash
2120

2221
To install these dependencies:
@@ -26,14 +25,14 @@ ubuntu
2625

2726
.. code-block:: bash
2827
29-
$ sudo apt install libpcre2-dev libsparsehash-dev
28+
$ sudo apt install libsparsehash-dev
3029
3130
macOS
3231
~~~~~
3332

3433
.. code-block:: bash
3534
36-
$ brew install pcre2 google-sparsehash
35+
$ brew install google-sparsehash
3736
3837
Install
3938
-------

0 commit comments

Comments
 (0)