Skip to content

Commit

Permalink
Fix sphinx config language (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
manoelmarques authored May 31, 2022
1 parent 8f522cf commit b4a3db1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/actions/install-main-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ runs:
key: aer-cache-${{ inputs.os }}-${{ inputs.python-version }}-${{ env.AER_HASH }}-${{ env.CACHE_VERSION }}
- name: Install Terra from Main
env:
MACOSX_DEPLOYMENT_TARGET: 10.9
MACOSX_DEPLOYMENT_TARGET: 10.15
run: |
echo 'Install Terra from Main'
BASE_DIR=terra-cache
Expand Down Expand Up @@ -119,6 +119,9 @@ runs:
pushd /tmp/qiskit-aer
if [ "${{ inputs.os }}" == "windows-2019" ]; then
python setup.py bdist_wheel -- -G 'Visual Studio 16 2019'
elif [ "${{ inputs.os }}" == "macos-latest" ]; then
pip install -U -c constraints.txt -r requirements-dev.txt
python setup.py bdist_wheel --plat-name macosx-10.16-x86_64
else
python setup.py bdist_wheel
fi
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This code is part of Qiskit.
#
# (C) Copyright IBM 2021.
# (C) Copyright IBM 2021, 2022.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
Expand Down Expand Up @@ -60,7 +60,7 @@
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
language = "en"

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand Down

0 comments on commit b4a3db1

Please sign in to comment.