Skip to content

Commit ba783b9

Browse files
committed
GCPy 1.4.0 release
This is the official release commit of GCPy 1.4.0, which includes: - Improvements and updates for benchmark plotting/tabling routines - Reorganized directory structure - Refactoring of plotting code into shorter routines - Improved example scripts For complete details, please see CHANGELOG.md. Signed-off-by: Bob Yantosca <yantosca@seas.harvard.edu>
2 parents 84d11cb + 2322fb3 commit ba783b9

File tree

120 files changed

+16109
-8663
lines changed

Some content is hidden

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

120 files changed

+16109
-8663
lines changed

.github/ISSUE_TEMPLATE/ask-a-question-about-gcpy.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: GCPy user manual
4+
url: https://gcpy.readthedocs.io/en/stable
5+
about: Click this link to read the GCPy user manual.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Request a new GCPy feature or start a discussion
3+
about: Use this form to request a new GCPy feature or start a discussion
4+
---
5+
6+
### Name and Institution (Required)
7+
8+
Name:
9+
Institution:
10+
11+
### Confirm you have reviewed the following documentation
12+
13+
- [ ] [Contributing guidelines](https://gcpy.readthedocs.io/en/stable/reference/CONTRIBUTING.html)
14+
15+
### New GCPy feature or discussion
16+
17+
Please provide a clear and concise overview of the discussion topic or new feature requested.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Ask a question about or report an issue with GCPy
3+
about: Use this form to ask a question about GCPy or to report an issue
4+
---
5+
6+
### Name and Institution (Required)
7+
8+
Name:
9+
Institution:
10+
11+
### Confirm you have reviewed the following documentation
12+
13+
- [ ] [Support guidelines](https://gcpy.readthedocs.io/en/stable/reference/SUPPORT.html)
14+
- [ ] [User manual](https://gcpy.readthedocs.io/en/stable)
15+
- [ ] [Current and past Github issues](https://github.com/geoschem/gcpy/issues)
16+
17+
### Description of your issue or question
18+
19+
Please provide as much detail as possible. Always include the GCPy version number and any relevant configuration and log files.
20+

.github/ISSUE_TEMPLATE/report-a-gcpy-bug-or-issue.md

Lines changed: 0 additions & 36 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/request-a-new-feature.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/start-a-gcpy-discussion.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
### Name and Institution (Required)
2+
3+
Name:
4+
Institution:
5+
6+
### Confirm you have reviewed the following documentation
7+
8+
- [ ] [Contributing guidelines](https://gcpy.readthedocs.io/en/stable/reference/CONTRIBUTING.html)
9+
10+
### Describe the update
11+
12+
Please provide a clear and concise overview of the update.
13+
14+
### Expected changes
15+
16+
Please provide details on how this update will impact GCPy output and include plots or tables as needed.
17+
18+
### Reference(s)
19+
20+
If this is a science update, please provide a literature citation.
21+
22+
### Related Github Issue(s)
23+
24+
Please link to the corresponding Github issue here. If fixing a bug, there should be an issue describing it with steps to reproduce.

.github/create-a-gcpy-pull-request.md

Lines changed: 0 additions & 58 deletions
This file was deleted.

.github/workflows/codeql.yml

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# For most projects, this workflow file will not need changing; you simply need
2+
# to commit it to your repository.
3+
#
4+
# You may wish to alter this file to override the set of languages analyzed,
5+
# or to provide custom queries or build logic.
6+
#
7+
# ******** NOTE ********
8+
# We have attempted to detect the languages in your repository. Please check
9+
# the `language` matrix defined below to confirm you have the correct set of
10+
# supported CodeQL languages.
11+
#
12+
name: "CodeQL"
13+
14+
on:
15+
push:
16+
branches: [ "main", "dev" ]
17+
pull_request:
18+
# The branches below must be a subset of the branches above
19+
branches: [ "main", "dev" ]
20+
schedule:
21+
- cron: '21 14 * * 2'
22+
23+
jobs:
24+
analyze:
25+
name: Analyze
26+
# Runner size impacts CodeQL analysis time. To learn more, please see:
27+
# - https://gh.io/recommended-hardware-resources-for-running-codeql
28+
# - https://gh.io/supported-runners-and-hardware-resources
29+
# - https://gh.io/using-larger-runners
30+
# Consider using larger runners for possible analysis time improvements.
31+
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
32+
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
33+
permissions:
34+
actions: read
35+
contents: read
36+
security-events: write
37+
38+
strategy:
39+
fail-fast: false
40+
matrix:
41+
language: [ 'python' ]
42+
# CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ]
43+
# Use only 'java-kotlin' to analyze code written in Java, Kotlin or both
44+
# Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
45+
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
46+
47+
steps:
48+
- name: Checkout repository
49+
uses: actions/checkout@v3
50+
51+
# Initializes the CodeQL tools for scanning.
52+
- name: Initialize CodeQL
53+
uses: github/codeql-action/init@v2
54+
with:
55+
languages: ${{ matrix.language }}
56+
# If you wish to specify custom queries, you can do so here or in a config file.
57+
# By default, queries listed here will override any specified in a config file.
58+
# Prefix the list here with "+" to use these queries and those in the config file.
59+
60+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
61+
# queries: security-extended,security-and-quality
62+
63+
64+
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
65+
# If this step fails, then you should remove it and run the build manually (see below)
66+
- name: Autobuild
67+
uses: github/codeql-action/autobuild@v2
68+
69+
# ℹ️ Command-line programs to run using the OS shell.
70+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
71+
72+
# If the Autobuild fails above, remove it and uncomment the following three lines.
73+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
74+
75+
# - run: |
76+
# echo "Run, Build Application using script"
77+
# ./location_of_script_within_repo/buildscript.sh
78+
79+
- name: Perform CodeQL Analysis
80+
uses: github/codeql-action/analyze@v2
81+
with:
82+
category: "/language:${{matrix.language}}"

0 commit comments

Comments
 (0)