From 852084bbbc8c96285f18e43f1753928bff9dcf14 Mon Sep 17 00:00:00 2001 From: Joe Jevnik Date: Fri, 26 Jun 2020 16:19:57 -0400 Subject: [PATCH] DOC: remove references to pcre2 dependency --- .github/workflows/main.yml | 4 ++-- .github/workflows/release.yml | 2 +- README.rst | 7 +++---- docs/source/install.rst | 7 +++---- 4 files changed, 9 insertions(+), 11 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6aad0861..3f26341a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a437995c..f5f97b03 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/README.rst b/README.rst index 0cb092e6..32604a1a 100644 --- a/README.rst +++ b/README.rst @@ -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: @@ -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 ------- diff --git a/docs/source/install.rst b/docs/source/install.rst index b785441d..ddc89f21 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -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: @@ -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 -------