Skip to content

Commit acba226

Browse files
pre-commit-ci[bot]Shallow Copy Bot
authored andcommitted
[pre-commit.ci] pre-commit autoupdate (#2601)
updates: - [github.com/astral-sh/ruff-pre-commit: v0.8.1 → v0.8.6](astral-sh/ruff-pre-commit@v0.8.1...v0.8.6) - [github.com/asottile/pyupgrade: v3.19.0 → v3.19.1](asottile/pyupgrade@v3.19.0...v3.19.1)
0 parents  commit acba226

File tree

139 files changed

+21612
-0
lines changed

Some content is hidden

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

139 files changed

+21612
-0
lines changed

.codespellignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
hist
2+
hart
3+
mutch
4+
ist
5+
inactivate
6+
ue
7+
fpr
8+
falsy
9+
assertIn
10+
nD

.coveragerc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[run]
2+
source = mesa
3+
branch = True
4+
5+
[report]
6+
omit =
7+
tests/*
8+
mesa/flat/*
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Bug report
3+
about: Let us know if something is broken on Mesa
4+
5+
---
6+
7+
**Describe the bug**
8+
<!-- A clear and concise description the bug -->
9+
10+
**Expected behavior**
11+
<!-- A clear and concise description of what you expected to happen -->
12+
13+
**To Reproduce**
14+
<!-- Steps to reproduce the bug, or a link to a project where the bug is visible
15+
Include a Minimal reproducible example: https://stackoverflow.com/help/minimal-reproducible-example -->
16+
17+
**Additional context**
18+
<!--
19+
Add any other context here.
20+
Any details about your specific platform:
21+
* If the problem is in the browser, what browser, version, and OS?
22+
-->

.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: true
2+
contact_links:
3+
- name: Questions, ideas, showcases and more
4+
url: https://github.com/projectmesa/mesa/discussions
5+
about: Discuss Mesa, ask questions, share ideas, and showcase your projects
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Feature request
3+
about: Suggest a new feature for Mesa
4+
5+
---
6+
7+
**What's the problem this feature will solve?**
8+
<!-- A clear and concise description of what the problem is. -->
9+
10+
**Describe the solution you'd like**
11+
<!-- A clear and concise description of what you want to happen. -->
12+
13+
**Additional context**
14+
<!-- Add any other context, links, etc. about the feature here. -->
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
### Summary
2+
<!-- Provide a brief summary of the bug and its impact. -->
3+
4+
### Bug / Issue
5+
<!-- Link to the related issue(s) and describe the bug. Include details like the context, what was expected, and what actually happened. -->
6+
7+
### Implementation
8+
<!-- Describe the changes made to resolve the issue. Highlight any important parts of the code that were modified. -->
9+
10+
### Testing
11+
<!-- Detail the testing performed to verify the fix. Include information on test cases, steps taken, and any relevant results.
12+
13+
If you're fixing the visualisation, add before/after screenshots. -->
14+
15+
### Additional Notes
16+
<!-- Add any additional information that may be relevant for the reviewers, such as potential side effects, dependencies, or related work.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
### Summary
2+
<!-- Provide a concise summary of the feature and its purpose. -->
3+
4+
### Motive
5+
<!-- Explain the reasoning behind this feature. Include details on the problem it addresses or the enhancement it provides. -->
6+
7+
### Implementation
8+
<!-- Describe how the feature was implemented. Include details on the approach taken, important decisions made, and code changes. -->
9+
10+
### Usage Examples
11+
<!-- Provide code snippets or examples demonstrating how to use the new feature. Highlight key scenarios where this feature will be beneficial.
12+
13+
If you're modifying the visualisation, add before/after screenshots. -->
14+
15+
### Additional Notes
16+
<!-- Add any additional information that may be relevant for the reviewers, such as potential side effects, dependencies, or related work. -->

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 2
2+
updates:
3+
# Maintain dependencies for GitHub Actions
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
# Check for updates to GitHub Actions every week
8+
interval: "weekly"

.github/pull_request_template.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Thanks for opening a PR! Please click the `Preview` tab and select a PR template:
2+
3+
- [🐛 Bug fix](?expand=1&template=bug.md)
4+
- [🛠 Feature/enhancement](?expand=1&template=feature.md)

.github/release.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Docs: https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
2+
changelog:
3+
exclude:
4+
labels:
5+
- ignore-for-release
6+
categories:
7+
- title: ⚠️ Breaking changes
8+
labels:
9+
- breaking
10+
- title: 🧪 Experimental features
11+
labels:
12+
- experimental
13+
- title: 🎉 New features added
14+
labels:
15+
- feature
16+
- title: 🛠 Enhancements made
17+
labels:
18+
- enhancement
19+
- title: 🐛 Bugs fixed
20+
labels:
21+
- bug
22+
- title: 🔍 Examples updated
23+
labels:
24+
- example
25+
- title: 📜 Documentation improvements
26+
labels:
27+
- docs
28+
- title: 🔧 Maintenance
29+
labels:
30+
- ci
31+
- testing
32+
- dependency
33+
- maintenance
34+
- packaging
35+
- title: Other changes
36+
labels:
37+
- "*"

0 commit comments

Comments
 (0)