Skip to content

Commit

Permalink
Merge branch 'main' into close_session
Browse files Browse the repository at this point in the history
  • Loading branch information
merav-aharoni committed Oct 29, 2023
2 parents 9acbb48 + 738cf09 commit 07b5db2
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 11 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ on:
jobs:
Deploy:
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
strategy:
matrix:
python-version: [3.9]
Expand All @@ -28,12 +31,12 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install deps
run: pip install -U pip setuptools build
- name: Build sdist
run: python3 -m build
- uses: actions/upload-artifact@v3
with:
path: ./dist/*
- name: Deploy to Pypi
env:
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
TWINE_USERNAME: qiskit
run : |
pip install -U twine pip setuptools virtualenv wheel
python3 setup.py sdist bdist_wheel
twine upload dist/qiskit*
shell: bash
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '0.7.1'
release = '0.8.0'

# -- General configuration ---------------------------------------------------

Expand Down
1 change: 1 addition & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.. release-notes:: Release Notes
:version: 0.7.0, 0.6.3, 0.6.2, 0.6.1, 0.6.0, 0.5.3, 0.5.2, 0.5.1, 0.5.0, 0.4.0, 0.3.0, 0.2.1, 0.2.0, 0.1.0
2 changes: 1 addition & 1 deletion qiskit_ibm_provider/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.1
0.8.0
1 change: 0 additions & 1 deletion test/integration/test_serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ def test_np_number(self):
shots = 100
result = self.sim_backend.run(self.bell, shots=np.int64(shots)).result()
self.assertEqual(result.results[0].shots, shots)
print(result.results[0])


def _find_potential_encoded(data: Any, c_key: str, tally: set) -> None:
Expand Down

0 comments on commit 07b5db2

Please sign in to comment.