Skip to content
This repository has been archived by the owner on Aug 19, 2023. It is now read-only.

Commit

Permalink
Bump Meta (#1456)
Browse files Browse the repository at this point in the history
* Bump version for qiskit-terra==0.20.0

Bump the meta repo version to include:

qiskit-terra==0.20.0

* Add terra release notes

* Fix typos in terra release notes

Co-authored-by: Julien Gacon <[email protected]>

* Bump Python minimum version

* Add new env variables to conf doc

* Fix doc lint

* Remove python 3.6 ci job

* Pin jinja2

* Add other packages to new release section

* Add dependabot to exclude list in authors file

* Update supported manylinux version

Co-authored-by: Matthew Treinish <[email protected]>
Co-authored-by: Kevin Hartman <[email protected]>
Co-authored-by: Julien Gacon <[email protected]>
  • Loading branch information
4 people authored Mar 31, 2022
1 parent 752afc1 commit 8a8ba2c
Show file tree
Hide file tree
Showing 10 changed files with 1,733 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
python-version: [3.7, 3.8, 3.9, "3.10"]
os: ["ubuntu-latest"]
steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 6 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
MD SAJID ANIS
Abby-Mitchell
Héctor Abraham
AduOffei
Rochisha Agarwal
Expand Down Expand Up @@ -67,6 +68,7 @@ Romilly Cocking
Ryan Cocuzzo
Jordan Connor
Filipe Correa
Zachary Crockett
Abigail J. Cross
Andrew W. Cross
Simon Cross
Expand Down Expand Up @@ -206,6 +208,7 @@ Gushu Li
Jake Lishman
Dennis Liu
Peng Liu
Lolcroc
Abhishek K M
Liam Madden
Yunho Maeng
Expand Down Expand Up @@ -419,6 +422,7 @@ Lucy Xing
Jintao YU
Bo Yang
Unchun Yang
Jimmy Yao
Daniyar Yeralin
Ryota Yonekura
David Yonge-Mallo
Expand Down Expand Up @@ -453,6 +457,7 @@ gruu
hhorii
hykavitha
itoko
jeppevinkel
jessica-angel7
jezerjojo14
jliu45
Expand All @@ -471,6 +476,7 @@ ryancocuzzo
saswati-qiskit
septembrr
sethmerkel
sg495
shaashwat
sternparky
strickroman
Expand Down
4 changes: 2 additions & 2 deletions Qiskit.bib

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,8 @@ pylint==2.4.4
cryptography==2.5.0
decorator==4.4.2
docutils==0.16

# Jinja2 3.1.0 is incompatible with sphinx and/or jupyter until they are updated
# to work with the new jinja version (the jinja maintainers aren't going to
# fix things) pin to the previous working version.
jinja2==3.0.3
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '0.34.2'
release = '0.35.0'

rst_prolog = """
.. |version| replace:: {0}
Expand Down
13 changes: 13 additions & 0 deletions docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,19 @@ behavior of Qiskit.
* ``QISKIT_NUM_PROCS``: Specifies the maximum number of parallel processes to
launch for parallel operations if parallel execution is enabled. It takes an
integer > 0 as the expected value.
* ``RAYON_NUM_THREADS``: Specifies the number of threads to run multithreaded
operations in Qiskit Terra. By default this multithreaded code will launch
a thread for each logical CPU, if you'd like to adjust the number of threads
Qiskit will use you can set this to an integer value. For example, setting
``RAYON_NUM_THREADS=4`` will only launch 4 threads for multithreaded
functions.
* ``QISKIT_FORCE_THREADS``: Specify that multithreaded code should always
execute in multiple threads. By default if you're running multithreaded code
in a section of Qiskit that is already running in parallel processes Qiskit
will not launch multiple threads and instead execute that function serially.
This is done to avoid potentially overloading limited CPU resources. However,
if you would like to force the use of multiple threads even when in a
multiprocess context you can set ``QISKIT_FORCE_THREADS=TRUE`` to do this.
* ``QISKIT_IBMQ_PROVIDER_LOG_LEVEL``: Specifies the log level to use, for the
``qiskit-ibmq-provider`` modules. If an invalid level is set, the log level
defaults to WARNING. The valid log levels are ``DEBUG``, ``INFO``,
Expand Down
8 changes: 3 additions & 5 deletions docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -576,10 +576,8 @@ environment as all dependencies are available on these platforms.
Tier 1 platforms are currently:
* Linux x86_64 (distributions compatible with the
`manylinux 2010 <https://www.python.org/dev/peps/pep-0571/>`__ packaging
specification for Python < 3.10 and
`manylinux 2014 <https://www.python.org/dev/peps/pep-0599/>`__ for Python
>= 3.10)
`manylinux 2014 <https://www.python.org/dev/peps/pep-0599/>`__
packaging specification.
* macOS x86_64 (10.9 or newer)
* Windows 64 bit
Expand All @@ -594,7 +592,7 @@ functioning Python environment.
Tier 2 platforms are currently:
* Linux i686 (distributions compatible with the
`manylinux 2010 <https://www.python.org/dev/peps/pep-0571/>`__ packaging
`manylinux 2014 <https://www.python.org/dev/peps/pep-0599/>`__ packaging
specification) for Python < 3.10
* Windows 32 bit for Python < 3.10
* Linux aarch64 (distributions compatible with the
Expand Down
Loading

0 comments on commit 8a8ba2c

Please sign in to comment.