Skip to content

Commit f545a1e

Browse files
committed
Merge branch 'refactor-n-memory' into slr_qir_classical
2 parents 8e112b7 + 4655dc7 commit f545a1e

File tree

634 files changed

+45585
-24034
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

634 files changed

+45585
-24034
lines changed

.github/workflows/python-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ env:
77
on:
88
push:
99
branches:
10+
- dev
1011
- development
1112
- master
1213
tags:
1314
- 'py-*'
1415
pull_request:
1516
branches:
17+
- dev
1618
- development
1719
- master
1820
workflow_dispatch:

.github/workflows/python-test.yml

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,23 @@ env:
88

99
on:
1010
push:
11-
branches: [ "master", "development" ]
12-
paths:
13-
- 'python/**'
14-
- '.github/workflows/python-test.yml'
15-
- '.typos.toml'
16-
- 'ruff.toml'
17-
- '.pre-commit-config.yaml'
11+
branches: [ "master", "development", "dev" ]
12+
# # Comment out paths to force run on all pushes
13+
# paths:
14+
# - 'python/**'
15+
# - '.github/workflows/python-test.yml'
16+
# - '.typos.toml'
17+
# - 'ruff.toml'
18+
# - '.pre-commit-config.yaml'
1819
pull_request:
19-
branches: [ "master", "development" ]
20-
paths:
21-
- 'python/**'
22-
- '.github/workflows/python-test.yml'
23-
- '.typos.toml'
24-
- 'ruff.toml'
25-
- '.pre-commit-config.yaml'
20+
branches: [ "master", "development", "dev" ]
21+
# # Comment out paths to force run on all PRs
22+
# paths:
23+
# - 'python/**'
24+
# - '.github/workflows/python-test.yml'
25+
# - '.typos.toml'
26+
# - 'ruff.toml'
27+
# - '.pre-commit-config.yaml'
2628

2729
concurrency:
2830
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/rust-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ env:
77

88
on:
99
push:
10-
branches: [ "master", "development" ]
10+
branches: [ "master", "development", "dev" ]
1111
paths:
1212
- 'crates/**'
1313
- 'examples/**'
1414
- 'Cargo.toml'
1515
- '.github/workflows/rust-test.yml'
1616
- '.pre-commit-config.yaml'
1717
pull_request:
18-
branches: [ "master", "development" ]
18+
branches: [ "master", "development", "dev" ]
1919
paths:
2020
- 'crates/**'
2121
- 'examples/**'
@@ -45,7 +45,7 @@ jobs:
4545
- name: Cache Rust
4646
uses: Swatinem/rust-cache@v2
4747
with:
48-
save-if: ${{ github.ref_name == 'master' || github.ref_name == 'development' }}
48+
save-if: ${{ github.ref_name == 'master' || github.ref_name == 'development' || github.ref_name == 'dev' }}
4949

5050
- name: Install rustfmt
5151
run: rustup component add rustfmt
@@ -104,7 +104,7 @@ jobs:
104104
- name: Cache Rust
105105
uses: Swatinem/rust-cache@v2
106106
with:
107-
save-if: ${{ github.ref_name == 'master' || github.ref_name == 'development' }}
107+
save-if: ${{ github.ref_name == 'master' || github.ref_name == 'development' || github.ref_name == 'dev' }}
108108

109109
- name: Install LLVM Tools (Ubuntu)
110110
if: matrix.os == 'ubuntu-latest'

.github/workflows/test-docs-examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: Documentation Tests & Build
22

33
on:
44
push:
5-
branches: [ master, development ]
5+
branches: [ master, development, dev ]
66
paths:
77
- 'docs/**'
88
pull_request:
9-
branches: [ master, development ]
9+
branches: [ master, development, dev ]
1010
paths:
1111
- 'docs/**'
1212
workflow_dispatch:

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
tmp/
22
**/.*/settings.local.json
33

4-
# Ignore helper text in root
5-
*.txt
6-
74
# pytest results
85
junit/
96

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,24 @@ repos:
1919
- id: debug-statements
2020

2121
- repo: https://github.com/crate-ci/typos
22-
rev: v1.28.3
22+
rev: v1
2323
hooks:
2424
- id: typos
2525
args: []
2626

2727
- repo: https://github.com/astral-sh/ruff-pre-commit
28-
rev: v0.8.3
28+
rev: v0.11.13
2929
hooks:
30-
- id: ruff
30+
- id: ruff-check
3131
args: [--fix, --exit-non-zero-on-fix]
3232

3333
- repo: https://github.com/psf/black
34-
rev: 24.10.0
34+
rev: 25.1.0
3535
hooks:
3636
- id: black
3737

3838
- repo: https://github.com/keewis/blackdoc
39-
rev: v0.3.9
39+
rev: v0.3.10
4040
hooks:
4141
- id: blackdoc
4242
additional_dependencies:

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.13

0 commit comments

Comments
 (0)