From e25574947eeb48b157bca4a3932507ee63b7632d Mon Sep 17 00:00:00 2001 From: Brigitta Sipocz Date: Wed, 2 Jan 2019 23:40:14 +0000 Subject: [PATCH 1/2] pngmath has been deprecated and removed in sphinx 1.8.0 --- extensions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions.rst b/extensions.rst index 3564404..15e44bd 100644 --- a/extensions.rst +++ b/extensions.rst @@ -114,7 +114,7 @@ which is rendered as Recent versions of Sphinx include built-in support for math. There are three flavors: - - sphinx.ext.pngmath: uses dvipng to render the equation + - sphinx.ext.imgmath: uses dvipng to render the equation - sphinx.ext.mathjax: renders the math in the browser using Javascript From ab8561f0064076ac79a640a5e6f015d39cd22163 Mon Sep 17 00:00:00 2001 From: LGTM Migrator Date: Thu, 10 Nov 2022 17:53:49 +0000 Subject: [PATCH 2/2] Add CodeQL workflow for GitHub code scanning --- .github/workflows/codeql.yml | 42 ++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..67d0740 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,42 @@ +name: "CodeQL" + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + schedule: + - cron: "0 22 * * 5" + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ javascript, python ] + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + queries: +security-and-quality + + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + if: ${{ matrix.language == 'javascript' || matrix.language == 'python' }} + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + with: + category: "/language:${{ matrix.language }}"