-
Notifications
You must be signed in to change notification settings - Fork 5
chore: apply Copier template #14
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
Closed
Closed
Changes from 6 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
5405a8c
feat: apply Copier template
34j 8e20e30
fix: replace code of conduct
34j 2ca6e0e
fix: update authors
34j 9e2de01
chore(pre-commit): update hooks
34j b11b717
fix: make cli optional
34j 99cd14e
style: pyproject-fmt somewhat not working
34j 1a35cfc
chore: remove .codespellrc
34j d349fa2
chore: remove .gitpod.yml
34j 12d31ad
chore: remove .editorconfig
34j ffc0704
chore: roll back pytest configuration
34j be26a77
chore(ruff): use extend-*
34j File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"projectName": "array-api-typing", | ||
"projectOwner": "data-apis", | ||
"repoType": "github", | ||
"repoHost": "https://github.com", | ||
"files": [ | ||
"README.md" | ||
], | ||
"imageSize": 80, | ||
"commit": true, | ||
"commitConvention": "angular", | ||
"contributors": [], | ||
"contributorsPerLine": 7, | ||
"skipCi": true | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[codespell] | ||
ignore-words-list = socio-economic |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Changes here will be overwritten by Copier | ||
_commit: 2e4f7d0 | ||
_src_path: gh:34j/pypackage-template | ||
cli_name: array-api-typing | ||
copyright_year: '2025' | ||
documentation: true | ||
email: [email protected] | ||
full_name: Consortium for Python Data API Standards | ||
github_username: data-apis | ||
has_cli: true | ||
initial_commit: false | ||
is_django_package: false | ||
open_source_license: MIT | ||
open_with_editor: false | ||
package_name: array_api_typing | ||
project_name: Python array API standard typing | ||
project_short_description: Static typing support for the array API standard | ||
project_slug: array-api-typing | ||
run_uv_sync: true | ||
setup_pre_commit: false | ||
|
34j marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
charset = utf-8 | ||
end_of_line = lf | ||
|
||
[*.bat] | ||
indent_style = tab | ||
end_of_line = crlf | ||
|
||
[LICENSE] | ||
insert_final_newline = false | ||
|
||
[Makefile] | ||
indent_style = tab |
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: ["data-apis"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Bug report | ||
description: Create a report to help us improve | ||
labels: [bug] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of what the bug is. | ||
placeholder: Describe the bug | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduce | ||
attributes: | ||
label: To Reproduce | ||
description: Steps to reproduce the behavior. | ||
placeholder: To Reproduce | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. | ||
placeholder: Additional context | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: Version of the project. | ||
placeholder: Version | ||
validations: | ||
required: true | ||
- type: input | ||
id: platform | ||
attributes: | ||
label: Platform | ||
description: Platform where the bug was found. | ||
placeholder: "Example: Windows 11 / macOS 12.0.1 / Ubuntu 20.04" | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our | ||
[Code of Conduct](https://github.com/data-apis/array-api-typing/blob/main/.github/CODE_OF_CONDUCT.md). | ||
options: | ||
- label: I agree to follow this project's Code of Conduct. | ||
required: true | ||
- type: checkboxes | ||
id: no-duplicate | ||
attributes: | ||
label: No Duplicate | ||
description: Please check [existing issues](https://github.com/data-apis/array-api-typing/issues) to avoid duplicates. | ||
options: | ||
- label: I have checked existing issues to avoid duplicates. | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: 👋 Have a great day and thank you for the bug report! |
34j marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project | ||
labels: [enhancement] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Is your feature request related to a problem? Please describe. | ||
description: A clear and concise description of what the problem is. | ||
value: I'm always frustrated when | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: A clear and concise description of any alternative solutions or features you've considered. | ||
placeholder: Describe alternatives you've considered | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context or screenshots about the feature request here. | ||
placeholder: Additional context | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our | ||
[Code of Conduct](https://github.com/data-apis/array-api-typing/blob/main/.github/CODE_OF_CONDUCT.md). | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true | ||
- type: checkboxes | ||
id: willing | ||
attributes: | ||
label: Are you willing to resolve this issue by submitting a Pull Request? | ||
description: Remember that first-time contributors are welcome! 🙌 | ||
options: | ||
- label: Yes, I have the time, and I know how to start. | ||
- label: Yes, I have the time, but I don't know how to start. I would need guidance. | ||
- label: No, I don't have the time, although I believe I could do it if I had the time... | ||
- label: No, I don't have the time and I wouldn't even know how to start. | ||
- type: markdown | ||
attributes: | ||
value: 👋 Have a great day and thank you for the feature request! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Disabling blank issues to ensure all necessary information is provided | ||
# Users should use the provided templates for specific issues | ||
# For general questions, please refer to the contact links section | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Questions | ||
url: https://github.com/data-apis/array-api-typing/discussions/categories/q-a | ||
about: Please ask and answer questions here. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<!-- | ||
😀 Wonderful! Thank you for opening a pull request. | ||
|
||
By submitting this pull request, you agree to follow our [Code of Conduct](https://github.com/data-apis/array-api-typing/blob/main/.github/CODE_OF_CONDUCT.md). | ||
|
||
Please fill in the information below to expedite the review | ||
and (hopefully) merge of your change. | ||
--> | ||
|
||
### Description of change | ||
|
||
<!-- | ||
Please be clear and concise what the change is intended to do, | ||
why this change is needed, and how you've verified that it | ||
corrects what you intended. | ||
|
||
In some cases it may be helpful to include the current behavior | ||
and the new behavior. | ||
|
||
If the change is related to an open issue, you can link it here. | ||
If you include `Fixes #0000` (replacing `0000` with the issue number) | ||
when this is merged it will automatically mark the issue as fixed and | ||
close it. | ||
--> | ||
|
||
### Pull-Request Checklist | ||
|
||
<!-- | ||
Please make sure to review and check all of the following to merge this PR. | ||
|
||
Note that there is no problem if they are not checked when this PR is created. | ||
|
||
If an item is not applicable, you can add "N/A" to the end. | ||
--> | ||
|
||
- [ ] Code is up-to-date with the `main` branch | ||
- [ ] This pull request follows the [contributing guidelines](https://github.com/data-apis/array-api-typing/blob/main/CONTRIBUTING.md). | ||
- [ ] This pull request links relevant issues as `Fixes #0000` | ||
- [ ] There are new or updated unit tests validating the change | ||
- [ ] Documentation has been updated to reflect this change | ||
- [ ] The new commits follow conventions outlined in the [conventional commit spec](https://www.conventionalcommits.org/en/v1.0.0/), such as "fix(api): prevent racing of requests". | ||
|
||
> - If pre-commit.ci is failing, try `pre-commit run -a` for further information. | ||
> - If CI / test is failing, try `uv run pytest` for further information. | ||
|
||
<!-- | ||
🎉 Thank you for contributing! | ||
--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
[breaking] | ||
color = "ffcc00" | ||
name = "breaking" | ||
description = "Breaking change." | ||
|
||
[bug] | ||
color = "d73a4a" | ||
name = "bug" | ||
description = "Something isn't working" | ||
|
||
[dependencies] | ||
color = "0366d6" | ||
name = "dependencies" | ||
description = "Pull requests that update a dependency file" | ||
|
||
[github_actions] | ||
color = "000000" | ||
name = "github_actions" | ||
description = "Update of github actions" | ||
|
||
[documentation] | ||
color = "1bc4a5" | ||
name = "documentation" | ||
description = "Improvements or additions to documentation" | ||
|
||
[duplicate] | ||
color = "cfd3d7" | ||
name = "duplicate" | ||
description = "This issue or pull request already exists" | ||
|
||
[enhancement] | ||
color = "a2eeef" | ||
name = "enhancement" | ||
description = "New feature or request" | ||
|
||
["good first issue"] | ||
color = "7057ff" | ||
name = "good first issue" | ||
description = "Good for newcomers" | ||
|
||
["help wanted"] | ||
color = "008672" | ||
name = "help wanted" | ||
description = "Extra attention is needed" | ||
|
||
[invalid] | ||
color = "e4e669" | ||
name = "invalid" | ||
description = "This doesn't seem right" | ||
|
||
[nochangelog] | ||
color = "555555" | ||
name = "nochangelog" | ||
description = "Exclude pull requests from changelog" | ||
|
||
[question] | ||
color = "d876e3" | ||
name = "question" | ||
description = "Further information is requested" | ||
|
||
[removed] | ||
color = "e99695" | ||
name = "removed" | ||
description = "Removed piece of functionalities." | ||
|
||
[tests] | ||
color = "bfd4f2" | ||
name = "tests" | ||
description = "CI, CD and testing related changes" | ||
|
||
[wontfix] | ||
color = "ffffff" | ||
name = "wontfix" | ||
description = "This will not be worked on" | ||
|
||
[discussion] | ||
color = "c2e0c6" | ||
name = "discussion" | ||
description = "Some discussion around the project" | ||
|
||
[hacktoberfest] | ||
color = "ffa663" | ||
name = "hacktoberfest" | ||
description = "Good issues for Hacktoberfest" | ||
|
||
[answered] | ||
color = "0ee2b6" | ||
name = "answered" | ||
description = "Automatically closes as answered after a delay" | ||
|
||
[waiting] | ||
color = "5f7972" | ||
name = "waiting" | ||
description = "Automatically closes if no answer after a delay" | ||
|
||
[fund] | ||
color = "0E8A16" | ||
name = "fund" | ||
description = "Add a section linking to polar.sh for funding the issue." |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.