Skip to content
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Here are a couple of friendly tutorials you can include: http://makeapullrequest

Working on your first Pull Request? You can learn how from this _free_ series, [How to Contribute to an Open Source Project on GitHub](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github).

As a side note, it helps to use newcomer-friendly language throughout the rest of your document. Here are a couple of examples from [Active Admin](https://github.com/haiiliin/abqpy/blob/2025/CONTRIBUTING.md):
As a side note, it helps to use newcomer-friendly language throughout the rest of your document. Here are a couple of examples from [Active Admin](https://github.com/haiiliin/abqpy/blob/2026/CONTRIBUTING.md):

At this point, you're ready to make your changes! Feel free to ask for help; everyone is a beginner at first :smile_cat:

Expand Down
1 change: 1 addition & 0 deletions .github/keylabeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ caseSensitive: false

# Explicit keyword mappings to labels. Form of match:label. Required.
labelMappings:
"- [x] 2026": backport-to-2026
"- [x] 2025": backport-to-2025
"- [x] 2024": backport-to-2024
"- [x] 2023": backport-to-2023
Expand Down
45 changes: 45 additions & 0 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,49 @@
pull_request_rules:
- name: Backport to 2026 (auto-merge)
conditions:
- label=backport-to-2026
- label!=disable-auto-merge
- label!=disable-auto-merge-2026
actions:
backport:
title: "{{ title }} (backport #{{ number }})"
body: |
{{ body }}

This is an automatic backport of pull request #{{number}} done by [Mergify](https://mergify.com).

{{ cherry_pick_error }}
branches:
- "2026"
assignees:
- "{{ author }}"
labels:
- backport
- "2026"
- name: Backport to 2026 (disable-auto-merge)
conditions:
- label=backport-to-2026
- or:
- label=disable-auto-merge
- label=disable-auto-merge-2026
actions:
backport:
title: "{{ title }} (backport #{{ number }})"
body: |
{{ body }}

This is an automatic backport of pull request #{{number}} done by [Mergify](https://mergify.com).

{{ cherry_pick_error }}
branches:
- "2026"
assignees:
- "{{ author }}"
labels:
- backport
- "2026"
- disable-auto-merge

- name: Backport to 2025 (auto-merge)
conditions:
- label=backport-to-2025
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- "2023"
- "2024"
- "2025"
- "2026"
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022-2025 Hailin-Wang
Copyright (c) 2022-2026 Hailin-Wang

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
# further. For a list of options available for each theme, see the
# documentation.
READTHEDOCS = "READTHEDOCS" in os.environ
versions = ["dev"] + [str(v) for v in range(2025, 2015, -1)]
versions = ["dev"] + [str(v) for v in range(2026, 2015, -1)]
with open(os.path.join(os.path.dirname(__file__), "locale", "edit-urls.json")) as f:
edit_urls = json.load(f)
html_theme_options = {
Expand Down