Skip to content

Commit 67dedb8

Browse files
committed
Merge branch 'master' into development
2 parents dc492ed + 9b58bd9 commit 67dedb8

File tree

7 files changed

+17
-13
lines changed

7 files changed

+17
-13
lines changed

.github/workflows/cpp_build_with_cmake.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: C++ build with CMake
2+
permissions: read-all
23

34
# Controls when the action will run:
45
# Triggers the workflow on push or pull request events but only for the master branch

.github/workflows/docker-image.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Docker Image CI
2+
permissions: read-all
23

34
on:
45
push:

.github/workflows/python_build_mpi.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Python build with MPI
2+
permissions: read-all
23

34
# Triggers the workflow on push or pull request events but only for the master branch
45
on:

.github/workflows/python_build_no_mpi.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Python build (no MPI)
2+
permissions: read-all
23

34
# Triggers the workflow on push or pull request events but only for the master branch
45
on:

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ RUN tar -xzf cmake-3.15.2-Linux-x86_64.tar.gz -C /usr/local/ --strip-components=
4141

4242
# Fetch and install the Intel MKL libraries required for building the Intel-QS simulator.
4343
WORKDIR swpkgs/mkl
44-
RUN wget "https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB"
45-
RUN apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB
46-
RUN rm GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB
44+
RUN wget "https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB"
45+
RUN apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
46+
RUN rm GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
4747
RUN sh -c 'echo deb https://apt.repos.intel.com/mkl all main > /etc/apt/sources.list.d/intel-mkl.list'
4848
RUN apt-get update
4949
RUN apt-get install -y intel-mkl-64bit-2019.2-057

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ look to our [contributing policy](CONTRIBUTING.md) and also to the
146146
For any bug, we use GitHub issues [GitHub issues](https://github.com/iqusoft/intel-qs/issues). Please submit your request there.
147147

148148
If you have a question or want to discuss something, feel free to send an email to
149-
[Justin Hogaboam](mailto:justin.w.hogaboam@intel.com),
150-
[Gian Giacomo Guerreschi](mailto:gian.giacomo.guerreschi@intel.com), or to
149+
[Gian Giacomo Guerreschi](mailto:gian.giacomo.guerreschi@intel.com),
150+
[Ryan Wu](mailto:xin-chuan.wu@intel.com), or to
151151
[Fabio Baruffa](mailto:[email protected]).
152152

153153

docs/requirements.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ beautifulsoup4==4.9.3
66
bleach==3.3.0
77
breathe==4.23.0
88
bs4==0.0.1
9-
certifi==2022.12.07
9+
certifi==2024.7.4
1010
chardet==3.0.4
1111
commonmark==0.9.1
1212
decorator==4.4.2
1313
defusedxml==0.6.0
1414
docutils==0.16
1515
entrypoints==0.3
16-
idna==2.10
16+
idna==3.7
1717
imagesize==1.2.0
1818
importlib-metadata==2.0.0
1919
ipython-genutils==0.2.0
20-
Jinja2==2.11.3
20+
Jinja2==3.1.6
2121
jsonschema==3.2.0
2222
jupyter-client==6.1.7
2323
jupyter-core==4.11.2
@@ -32,14 +32,14 @@ nbsphinx==0.8.0
3232
nest-asyncio==1.4.2
3333
packaging==20.4
3434
pandocfilters==1.4.3
35-
Pygments==2.7.4
35+
Pygments==2.15.0
3636
pyparsing==2.4.7
3737
pyrsistent==0.17.3
3838
python-dateutil==2.8.1
3939
pytz==2020.1
4040
pyzmq==19.0.2
4141
recommonmark==0.6.0
42-
requests==2.24.0
42+
requests==2.32.4
4343
six==1.15.0
4444
snowballstemmer==2.0.0
4545
soupsieve==2.0.1
@@ -51,9 +51,9 @@ sphinxcontrib-jsmath==1.0.1
5151
sphinxcontrib-qthelp==1.0.3
5252
sphinxcontrib-serializinghtml==1.1.4
5353
testpath==0.4.4
54-
tornado==6.0.4
54+
tornado==6.5.1
5555
traitlets==4.3.3
56-
urllib3==1.26.5
56+
urllib3==2.5.0
5757
webencodings==0.5.1
58-
zipp==3.4.0
58+
zipp==3.19.1
5959
exhale==0.2.3

0 commit comments

Comments
 (0)