Skip to content

Commit 58ff091

Browse files
authored
Merge pull request #182 from lincc-frameworks/ppt-2.0.5
copier update PPT 2.0.5
2 parents 27dd430 + db094b2 commit 58ff091

16 files changed

+40
-16
lines changed

.copier-answers.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: v2.0.3
2+
_commit: v2.0.5
33
_src_path: gh:lincc-frameworks/python-project-template
44
author_email: [email protected]
55
author_name: LINCC Frameworks
@@ -22,3 +22,4 @@ python_versions:
2222
- '3.10'
2323
- '3.11'
2424
- '3.12'
25+
- '3.13'

.github/ISSUE_TEMPLATE/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Configurations
2+
3+
Templates for various different issue types are defined in this directory
4+
and a pull request template is defined as ``../pull_request_template.md``. Adding,
5+
removing, and modifying these templates to suit the needs of your project is encouraged.
6+
7+
For more information about these templates, look here: https://lincc-ppt.readthedocs.io/en/latest/practices/issue_pr_templating.html
8+
9+
Or if you still have questions contact us: https://lincc-ppt.readthedocs.io/en/latest/source/contact.html

.github/workflows/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Workflows
2+
3+
The .yml files in this directory are used to define the various continuous
4+
integration scripts that will be run on your behalf e.g. nightly as a smoke check,
5+
or when you create a new PR.
6+
7+
For more information about CI and workflows, look here: https://lincc-ppt.readthedocs.io/en/latest/practices/ci.html
8+
9+
Or if you still have questions contact us: https://lincc-ppt.readthedocs.io/en/latest/source/contact.html

.github/workflows/asv-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches: [ main ]
99

1010
env:
11-
PYTHON_VERSION: "3.10"
11+
PYTHON_VERSION: "3.11"
1212
ASV_VERSION: "0.6.4"
1313
WORKING_DIR: ${{github.workspace}}/benchmarks
1414

.github/workflows/asv-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
workflow_dispatch:
1010

1111
env:
12-
PYTHON_VERSION: "3.10"
12+
PYTHON_VERSION: "3.11"
1313
ASV_VERSION: "0.6.4"
1414
WORKING_DIR: ${{github.workspace}}/benchmarks
1515
NIGHTLY_HASH_FILE: nightly-hash

.github/workflows/asv-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ concurrency:
1515
cancel-in-progress: true
1616

1717
env:
18-
PYTHON_VERSION: "3.10"
18+
PYTHON_VERSION: "3.11"
1919
ASV_VERSION: "0.6.4"
2020
WORKING_DIR: ${{github.workspace}}/benchmarks
2121
ARTIFACTS_DIR: ${{github.workspace}}/artifacts

.github/workflows/build-documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@v4
24-
- name: Set up Python 3.10
24+
- name: Set up Python 3.11
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: '3.10'
27+
python-version: '3.11'
2828
- name: Install dependencies
2929
run: |
3030
sudo apt-get update

.github/workflows/pre-commit-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Python
2121
uses: actions/setup-python@v5
2222
with:
23-
python-version: '3.10'
23+
python-version: '3.11'
2424
- name: Install dependencies
2525
run: |
2626
sudo apt-get update
@@ -32,5 +32,5 @@ jobs:
3232
extra_args: --all-files --verbose
3333
env:
3434
SKIP: "check-lincc-frameworks-template-version,no-commit-to-branch,check-added-large-files,validate-pyproject,sphinx-build,pytest-check"
35-
- uses: pre-commit-ci/lite-action@v1.0.3
35+
- uses: pre-commit-ci/lite-action@v1.1.0
3636
if: failure() && github.event_name == 'pull_request' && github.event.pull_request.draft == false

.github/workflows/publish-benchmarks-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
echo "Conclusion: ${{ github.event.workflow_run.conclusion }}"
2828
echo "Event: ${{ github.event.workflow_run.event }}"
2929
- name: Download artifact
30-
uses: dawidd6/action-download-artifact@v6
30+
uses: dawidd6/action-download-artifact@v7
3131
with:
3232
name: benchmark-artifacts
3333
run_id: ${{ github.event.workflow_run.id }}

.github/workflows/publish-to-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Python
2828
uses: actions/setup-python@v5
2929
with:
30-
python-version: '3.10'
30+
python-version: '3.11'
3131
- name: Install dependencies
3232
run: |
3333
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)