Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Rewrite based on NamedDimsArrays #1608

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .JuliaFormatter.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# See https://domluna.github.io/JuliaFormatter.jl/stable/ for a list of options
style = "blue"
indent = 2
60 changes: 0 additions & 60 deletions .github/ISSUE_TEMPLATE/02_NDTensors_bug_report.md

This file was deleted.

24 changes: 0 additions & 24 deletions .github/ISSUE_TEMPLATE/02_NDTensors_feature_request.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: ITensors.jl bug report
about: Create a bug report to help us improve ITensors.jl
title: "[ITensors] [BUG] YOUR SHORT DESCRIPTION OF THE BUG HERE"
labels: ["ITensors", "bug"]
title: "[BUG] YOUR SHORT DESCRIPTION OF THE BUG HERE"
labels: ["bug"]
assignees: ''

---
Expand All @@ -22,6 +22,7 @@ If you are unable to construct a minimal code that demonstrates the bug or unexp
```julia
[YOUR MINIMAL RUNNABLE CODE HERE]
```

</p></details>


Expand All @@ -43,6 +44,7 @@ If you provided a minimal code that demonstrates the bug or unexpected behavior,
```julia
[OUTPUT OF YOUR MINIMAL RUNNABLE CODE HERE]
```

</p></details>


Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: ITensors.jl feature request
about: Suggest an idea for ITensors.jl
title: "[ITensors] [ENHANCEMENT] YOUR SHORT DESCRIPTION OF THE FEATURE REQUEST HERE"
labels: ["ITensors", "enhancement"]
title: "[ENHANCEMENT] YOUR SHORT DESCRIPTION OF THE FEATURE REQUEST HERE"
labels: ["enhancement"]
assignees: ''

---
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 2 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ If practical and applicable, please include a minimal demonstration of the previ
```julia
[YOUR MINIMAL DEMONSTRATION OF PREVIOUS BEHAVIOR]
```

</p></details>

<details><summary>Minimal demonstration of new behavior</summary><p>

```julia
[YOUR MINIMAL DEMONSTRATION OF NEW BEHAVIOR]
```

</p></details>

# How Has This Been Tested?
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
run: julia -e 'using CompatHelper; CompatHelper.main(; subdirs=["", "NDTensors"])'
run: julia -e 'using CompatHelper; CompatHelper.main()'
57 changes: 0 additions & 57 deletions .github/workflows/Downstream.yml

This file was deleted.

13 changes: 13 additions & 0 deletions .github/workflows/FormatCheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "Format Check"

on:
push:
branches:
- 'main'
tags: '*'
pull_request:

jobs:
format-check:
name: "Format Check"
uses: "ITensor/ITensorActions/.github/workflows/FormatCheck.yml@main"
15 changes: 15 additions & 0 deletions .github/workflows/LiterateCheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: "Literate Check"

on:
push:
branches:
- 'main'
tags: '*'
pull_request:

jobs:
literate:
name: "Literate Check"
uses: "ITensor/ITensorActions/.github/workflows/LiterateCheck.yml@main"
with:
localregistry: https://github.com/ITensor/ITensorRegistry.git
Loading
Loading