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

CookieCutter Review 2023 #189

Merged
merged 28 commits into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
906f3bb
Replacing provision-with-micromamba action with setup-micromamba action.
Oct 11, 2023
eb4d663
Updating reference workflows.
Oct 11, 2023
ce6ed30
remove printing from except in invoke_shell
janash Oct 12, 2023
499e137
make cookiecutter safe for old git versions
janash Oct 12, 2023
df1fa36
remove pytest-runner
janash Oct 12, 2023
7ea6455
Merge pull request #174 from janash/pytest-runner
Lnaden Oct 12, 2023
9ae5161
Updating setup-python from v2 to v4.
Oct 26, 2023
76498ba
Updating reference workflows.
Oct 26, 2023
3a307c5
Merge pull request #176 from sjayellis/setup-python-ver
Lnaden Oct 26, 2023
a6f5d34
Merge pull request #172 from sjayellis/mamba-provision
Lnaden Oct 26, 2023
f3369ff
Merge pull request #173 from janash/post-hook
Lnaden Oct 26, 2023
9e97546
Merge pull request #177 from MolSSI/main
Lnaden Oct 26, 2023
2c0b729
Add more editor related files/folders to .gitignore
FanwangM Nov 6, 2023
0571e1e
update theme for docs
janash Nov 12, 2022
35021f5
make grid responsive
janash Nov 14, 2022
f8acb36
Updating checkout action version and python versions.
Nov 9, 2023
c2277a3
Updating reference workflows.
Nov 9, 2023
f9d3d6a
update conf.py, requirements.yaml for new doc theme
janash Nov 9, 2023
df1f713
update README in docs folder
janash Nov 9, 2023
17c3a84
move branch rename
janash Nov 10, 2023
65b224d
Update .gitignore in package folder
FanwangM Nov 12, 2023
f0293ca
Removing the default conda channel from the conda-forge option.
Dec 7, 2023
79df27c
Updating the reference workflows.
Dec 7, 2023
f32f81d
Merge pull request #183 from sjayellis/conda-forge-only
Lnaden Feb 2, 2024
4af2f0c
Merge pull request #181 from janash/git-branch-name
Lnaden Feb 2, 2024
b6d9bca
Merge pull request #180 from sjayellis/checkout-v4
Lnaden Feb 2, 2024
04b0cf5
Merge pull request #178 from FanwangM/gitignore
Lnaden Feb 2, 2024
e2ea32d
Merge pull request #166 from janash/doc-theme-update
Lnaden Feb 2, 2024
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
14 changes: 8 additions & 6 deletions .github/reference-workflows/CI_1_1_1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10"]
python-version: [3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Additional info about the build
shell: bash
Expand All @@ -34,13 +34,15 @@ jobs:
df -h
ulimit -a

# More info on options: https://github.com/marketplace/actions/provision-with-micromamba
- uses: mamba-org/provision-with-micromamba@main
# More info on options: https://github.com/marketplace/actions/setup-micromamba
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: devtools/conda-envs/test_env.yaml
environment-name: test
channels: conda-forge,defaults
extra-specs: |
condarc: |
channels:
- conda-forge
create-args: >-
python=${{ matrix.python-version }}

- name: Install package
Expand Down
14 changes: 8 additions & 6 deletions .github/reference-workflows/CI_1_1_2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10"]
python-version: [3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Additional info about the build
shell: bash
Expand All @@ -34,13 +34,15 @@ jobs:
df -h
ulimit -a

# More info on options: https://github.com/marketplace/actions/provision-with-micromamba
- uses: mamba-org/provision-with-micromamba@main
# More info on options: https://github.com/marketplace/actions/setup-micromamba
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: devtools/conda-envs/test_env.yaml
environment-name: test
channels: conda-forge,defaults
extra-specs: |
condarc: |
channels:
- conda-forge
create-args: >-
python=${{ matrix.python-version }}

- name: Install package
Expand Down
14 changes: 8 additions & 6 deletions .github/reference-workflows/CI_1_2_1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10"]
python-version: [3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Additional info about the build
shell: bash
Expand All @@ -34,13 +34,15 @@ jobs:
df -h
ulimit -a

# More info on options: https://github.com/marketplace/actions/provision-with-micromamba
- uses: mamba-org/provision-with-micromamba@main
# More info on options: https://github.com/marketplace/actions/setup-micromamba
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: devtools/conda-envs/test_env.yaml
environment-name: test
channels: defaults
extra-specs: |
condarc: |
channels:
- defaults
create-args: >-
python=${{ matrix.python-version }}

- name: Install package
Expand Down
14 changes: 8 additions & 6 deletions .github/reference-workflows/CI_1_2_2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10"]
python-version: [3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Additional info about the build
shell: bash
Expand All @@ -34,13 +34,15 @@ jobs:
df -h
ulimit -a

# More info on options: https://github.com/marketplace/actions/provision-with-micromamba
- uses: mamba-org/provision-with-micromamba@main
# More info on options: https://github.com/marketplace/actions/setup-micromamba
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: devtools/conda-envs/test_env.yaml
environment-name: test
channels: defaults
extra-specs: |
condarc: |
channels:
- defaults
create-args: >-
python=${{ matrix.python-version }}

- name: Install package
Expand Down
6 changes: 3 additions & 3 deletions .github/reference-workflows/CI_1_3_1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10"]
python-version: [3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Additional info about the build
shell: bash
Expand All @@ -35,7 +35,7 @@ jobs:
ulimit -a

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
6 changes: 3 additions & 3 deletions .github/reference-workflows/CI_1_3_2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10"]
python-version: [3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Additional info about the build
shell: bash
Expand All @@ -35,7 +35,7 @@ jobs:
ulimit -a

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
14 changes: 8 additions & 6 deletions .github/reference-workflows/CI_2_1_1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10"]
python-version: [3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Additional info about the build
shell: bash
Expand All @@ -34,13 +34,15 @@ jobs:
df -h
ulimit -a

# More info on options: https://github.com/marketplace/actions/provision-with-micromamba
- uses: mamba-org/provision-with-micromamba@main
# More info on options: https://github.com/marketplace/actions/setup-micromamba
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: devtools/conda-envs/test_env.yaml
environment-name: test
channels: conda-forge,defaults
extra-specs: |
condarc: |
channels:
- conda-forge
create-args: >-
python=${{ matrix.python-version }}

- name: Install package
Expand Down
14 changes: 8 additions & 6 deletions .github/reference-workflows/CI_2_1_2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10"]
python-version: [3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Additional info about the build
shell: bash
Expand All @@ -34,13 +34,15 @@ jobs:
df -h
ulimit -a

# More info on options: https://github.com/marketplace/actions/provision-with-micromamba
- uses: mamba-org/provision-with-micromamba@main
# More info on options: https://github.com/marketplace/actions/setup-micromamba
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: devtools/conda-envs/test_env.yaml
environment-name: test
channels: conda-forge,defaults
extra-specs: |
condarc: |
channels:
- conda-forge
create-args: >-
python=${{ matrix.python-version }}

- name: Install package
Expand Down
14 changes: 8 additions & 6 deletions .github/reference-workflows/CI_2_2_1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10"]
python-version: [3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Additional info about the build
shell: bash
Expand All @@ -34,13 +34,15 @@ jobs:
df -h
ulimit -a

# More info on options: https://github.com/marketplace/actions/provision-with-micromamba
- uses: mamba-org/provision-with-micromamba@main
# More info on options: https://github.com/marketplace/actions/setup-micromamba
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: devtools/conda-envs/test_env.yaml
environment-name: test
channels: defaults
extra-specs: |
condarc: |
channels:
- defaults
create-args: >-
python=${{ matrix.python-version }}

- name: Install package
Expand Down
14 changes: 8 additions & 6 deletions .github/reference-workflows/CI_2_2_2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10"]
python-version: [3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Additional info about the build
shell: bash
Expand All @@ -34,13 +34,15 @@ jobs:
df -h
ulimit -a

# More info on options: https://github.com/marketplace/actions/provision-with-micromamba
- uses: mamba-org/provision-with-micromamba@main
# More info on options: https://github.com/marketplace/actions/setup-micromamba
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: devtools/conda-envs/test_env.yaml
environment-name: test
channels: defaults
extra-specs: |
condarc: |
channels:
- defaults
create-args: >-
python=${{ matrix.python-version }}

- name: Install package
Expand Down
6 changes: 3 additions & 3 deletions .github/reference-workflows/CI_2_3_1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10"]
python-version: [3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Additional info about the build
shell: bash
Expand All @@ -35,7 +35,7 @@ jobs:
ulimit -a

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
6 changes: 3 additions & 3 deletions .github/reference-workflows/CI_2_3_2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10"]
python-version: [3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Additional info about the build
shell: bash
Expand All @@ -35,7 +35,7 @@ jobs:
ulimit -a

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
Loading
Loading