Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
f210e31
examples notebook
gabriel-legros-colibri Jun 16, 2026
89d4585
lazy imports
gabriel-legros-colibri Jun 16, 2026
04bbffe
cleaning
gabriel-legros-colibri Jun 16, 2026
b8a2b14
typed stuff
Henri-ColibrITD Jun 16, 2026
04de8f5
cleaning
gabriel-legros-colibri Jun 16, 2026
8062f26
doc fixes
Henri-ColibrITD Jun 16, 2026
68ccb87
version fix
Henri-ColibrITD Jun 16, 2026
e07840d
version fix
Henri-ColibrITD Jun 16, 2026
9f0690f
Merge branch 'dev' into chore--typing-&-co
Henri-ColibrITD Jun 16, 2026
fce7618
Merge pull request #5 from ColibrITD-SAS/chore--typing-&-co
Henri-ColibrITD Jun 16, 2026
8721b82
test Paulis=None
gabriel-legros-colibri Jun 17, 2026
251c414
wip: dealing with Paulis=None
gabriel-legros-colibri Jun 17, 2026
74fc421
wip: run_single_point adapted
gabriel-legros-colibri Jun 17, 2026
5f6665b
wip: test having modified plot_layerwise_qubit_padding
gabriel-legros-colibri Jun 17, 2026
9cb04ff
wip: test
gabriel-legros-colibri Jun 17, 2026
2c826f5
figures folder
gabriel-legros-colibri Jun 17, 2026
65969de
ignoring ex/ folder
gabriel-legros-colibri Jun 17, 2026
0a7fc7e
Ignore ex folder
gabriel-legros-colibri Jun 17, 2026
319db5b
test
gabriel-legros-colibri Jun 17, 2026
84c39ce
test
gabriel-legros-colibri Jun 17, 2026
bd469f8
working
gabriel-legros-colibri Jun 17, 2026
56672a4
werking
gabriel-legros-colibri Jun 17, 2026
2710262
cleaning
gabriel-legros-colibri Jun 17, 2026
4788361
workflows
Henri-ColibrITD Jun 17, 2026
fc4ce97
Merge branch 'dev' of github.com:ColibrITD-SAS/landscape_visualisatio…
Henri-ColibrITD Jun 17, 2026
33887fd
vs code settings
Henri-ColibrITD Jun 17, 2026
07a58ec
cleaning
gabriel-legros-colibri Jun 17, 2026
a2f4a21
pypi typo
Henri-ColibrITD Jun 17, 2026
75dfa4f
Merge branch 'dev' of github.com:ColibrITD-SAS/landscape_visualisatio…
Henri-ColibrITD Jun 17, 2026
73fea6b
project urls
Henri-ColibrITD Jun 17, 2026
008a25e
cleaning
gabriel-legros-colibri Jun 17, 2026
6b00285
fixing deployment
Henri-ColibrITD Jun 17, 2026
3f06e61
fixing deployment
Henri-ColibrITD Jun 17, 2026
c67c910
fixing deployment
Henri-ColibrITD Jun 17, 2026
3e2f372
Merge branch 'dev' of github.com:ColibrITD-SAS/landscape_visualisatio…
Henri-ColibrITD Jun 17, 2026
db240d8
fixing deployment
Henri-ColibrITD Jun 17, 2026
3964bd9
fixing deployment
Henri-ColibrITD Jun 17, 2026
cf05ede
fixing deployment
Henri-ColibrITD Jun 17, 2026
2ab7d03
fixing deployment
Henri-ColibrITD Jun 18, 2026
50e6c6b
docstrings updated
gabriel-legros-colibri Jun 18, 2026
02b43cd
docstrings updated
gabriel-legros-colibri Jun 18, 2026
6e793c5
notebooks example
gabriel-legros-colibri Jun 18, 2026
17db73d
ci now operational
Henri-ColibrITD Jun 18, 2026
c1b8f78
Merge branch 'dev' of github.com:ColibrITD-SAS/landscape_visualisatio…
Henri-ColibrITD Jun 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Documentation deployement

on:
pull_request_target:
types:
- closed
branches:
- main
release:
types: [published]
jobs:
build_publish_docs:
# Deploy to cloudflare
if: github.event_name == 'release' || github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build Document
run: |
pip install -r requirements-dev.txt
sudo apt update
sudo apt install -y pandoc
touch .env
echo "SPHINX_GITHUB_CHANGELOG_TOKEN=${{secrets.DOC_GH_API_TOKEN}}" > .env
sphinx-build -b html docs build
- name: Publish
uses: cloudflare/pages-action@1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: mpqp
branch: main
directory: build
28 changes: 28 additions & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Pipy publishing

on:
push:
tags:
- "*"

jobs:
build_publish_package:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Dependencies
run: |
pip install -r requirements-dev.txt
- name: Build Package
run: python setup.py sdist bdist_wheel
- name: Install Twine
run: |
pip install twine
pip install -U packaging
- name: Publish to PyPI
run: |
twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ cython_debug/
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
# and can be added to the global gitignore or merged into this file. However, if you prefer,
# you could uncomment the following to ignore the entire vscode folder
.vscode/
# .vscode/

# PyPI configuration file
.pypirc
Expand All @@ -151,3 +151,4 @@ marimo/_static/
marimo/_lsp/
__marimo__/

ex/figures/
13 changes: 13 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"recommendations": [
"ms-python.isort",
"ms-python.black-formatter",
"ms-python.vscode-pylance",
"streetsidesoftware.code-spell-checker",
"ms-toolsai.jupyter",
"James-Yu.latex-workshop",
"tecosaur.latex-utilities",
"mathematic.vscode-latex",
"esbenp.prettier-vscode"
]
}
30 changes: 30 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.analysis.typeCheckingMode": "strict",
"editor.formatOnSave": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.autoFormatStrings": true,
"python.analysis.diagnosticSeverityOverrides": {
"reportUnknownArgumentType": "none",
"reportUnknownVariableType": "none",
"reportUnknownMemberType": "none",
"reportUnknownLambdaType": "none",
"reportMissingTypeStubs": "none",
"reportUnknownParameterType": "none",
"reportUnnecessaryTypeIgnoreComment": "warning"
// "enableTypeIgnoreComments": "false"
// "reportGeneralTypeIssues": "none"
},
"autoDocstring.docstringFormat": "google-notypes",
"isort.check": true,
"isort.args": ["--profile", "black"],
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"python-envs.defaultEnvManager": "ms-python.python:system",
"python-envs.defaultPackageManager": "ms-python.python:pip",
"python-envs.pythonProjects": []
}
10 changes: 10 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
graft landscape_tools

prune .github
prune .vscode
prune .idea

global-exclude .DS_Store
global-exclude __pycache__
global-exclude *.pyd
global-exclude .env
Loading
Loading