-
Notifications
You must be signed in to change notification settings - Fork 3
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
✨: create init file #12
Draft
nstarman
wants to merge
6
commits into
data-apis:main
Choose a base branch
from
nstarman:code/init
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
38d6553
🔧: add tool config
nstarman 14f845b
🔧: update mypy config
nstarman 600f012
🔧: update ruff config
nstarman 13d3a93
💄: re-style the pyproject.toml
nstarman 5d31acb
🔧: update hatch vcs config
nstarman 40bf561
✨: create init file
nstarman 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 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 |
---|---|---|
|
@@ -6,9 +6,9 @@ | |
requires-python = ">=3.10" | ||
license = "MIT" | ||
authors = [ | ||
{name="Consortium for Python Data API Standards", email="[email protected]"}, | ||
{name="Joren Hammudoglu", email="[email protected]"}, | ||
{name="Nathaniel Starkman", email="[email protected]"} | ||
{ name = "Consortium for Python Data API Standards", email = "[email protected]" }, | ||
{ name = "Joren Hammudoglu", email = "[email protected]" }, | ||
{ name = "Nathaniel Starkman", email = "[email protected]" }, | ||
] | ||
classifiers = [ | ||
"Development Status :: 1 - Planning", | ||
|
@@ -28,24 +28,112 @@ | |
dependencies = [] | ||
|
||
[project.urls] | ||
Changelog = "https://github.com/data-apis/array-api-typing/releases" | ||
Repository = "https://github.com/data-apis/array-api-typing" | ||
Repository = "https://github.com/data-apis/array-api-typing" | ||
Changelog = "https://github.com/data-apis/array-api-typing/releases" | ||
|
||
|
||
[build-system] | ||
requires = ["hatch-vcs", "hatchling"] | ||
requires = ["hatch-vcs", "hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
|
||
[dependency-groups] | ||
test = [ | ||
"pytest>=8.3.3", | ||
"pytest-cov >=3", | ||
"pytest-github-actions-annotate-failures", | ||
"sybil>=8.0.0", | ||
] | ||
dev = [ | ||
"pre-commit>=4.0.1", | ||
{ include-group = "test" }, | ||
] | ||
test = [ | ||
"pytest>=8.3.3", | ||
"pytest-cov >=3", | ||
"pytest-github-actions-annotate-failures", | ||
"sybil>=8.0.0", | ||
] | ||
|
||
|
||
[tool.hatch] | ||
build.hooks.vcs.version-file = "src/array_api_typing/_version.py" | ||
version.source = "vcs" | ||
version.source = "vcs" | ||
|
||
[tool.hatch.build.hooks.vcs] | ||
version-file = "src/array_api_typing/_version.py" | ||
template = ''' | ||
# This file is automatically generated by Hatch | ||
version = {version!r} | ||
version_tuple = {version_tuple!r} | ||
''' | ||
|
||
|
||
[tool.coverage] | ||
report.exclude_also = ['\.\.\.', 'if typing.TYPE_CHECKING:'] | ||
run.source = ["array-api-typing"] | ||
run.branch = true | ||
|
||
|
||
[tool.mypy] | ||
files = ["src", "tests"] | ||
python_version = "3.10" | ||
|
||
strict = true | ||
disallow_incomplete_defs = true | ||
disallow_untyped_defs = true | ||
disable_bytearray_promotion = true # Note(2024-12-05): these are private flags | ||
disable_memoryview_promotion = true # Note(2024-12-05): these are private flags | ||
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"] | ||
|
||
warn_return_any = true | ||
warn_unreachable = true | ||
warn_unused_configs = true | ||
|
||
|
||
[tool.pytest.ini_options] | ||
addopts = [ | ||
"--showlocals", | ||
"--strict-config", | ||
"--strict-markers", | ||
"-p no:doctest", # using sybil | ||
"-ra", | ||
] | ||
filterwarnings = [ | ||
"error", | ||
# Sybil | ||
"ignore:Attribute s is deprecated and will be removed in Python 3\\.14:DeprecationWarning", | ||
"ignore:ast\\.Str is deprecated and will be removed in Python 3\\.14:DeprecationWarning", | ||
] | ||
log_cli_level = "INFO" | ||
minversion = "8.3" | ||
testpaths = ["README.md", "src/", "docs", "tests/"] | ||
norecursedirs = ["docs/_build"] | ||
xfail_strict = true | ||
|
||
|
||
[tool.ruff] | ||
preview = true | ||
force-exclude = true | ||
|
||
[tool.ruff.lint] | ||
extend-select = ["ALL"] | ||
ignore = [ | ||
"COM812", # Conflicts with formatter | ||
"CPY", # Missing copyright notice at top of file (NOTE revisit when autofixable) | ||
"D105", # Missing docstring in magic method | ||
"D107", # Missing docstring in __init__ | ||
"D203", # 1 blank line required before class docstring | ||
"D213", # Multi-line docstring summary should start at the second line | ||
"FBT", # flake8-boolean-trap | ||
"FIX", # flake8-fixme | ||
"ISC001", # Conflicts with formatter | ||
] | ||
|
||
[tool.ruff.lint.flake8-import-conventions] | ||
banned-from = ["array_api_typing"] | ||
|
||
[tool.ruff.lint.flake8-import-conventions.extend-aliases] | ||
array_api_typing = "xpt" | ||
|
||
[tool.ruff.lint.isort] | ||
combine-as-imports = true | ||
extra-standard-library = ["typing_extensions"] | ||
known-local-folder = ["array_api_typing"] | ||
|
||
[tool.ruff.format] | ||
docstring-code-format = true | ||
line-ending = "lf" |
This file contains 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,5 @@ | ||
"""Static typing support for the array API standard.""" | ||
|
||
__all__: list[str] = [] | ||
|
||
from ._version import version as __version__ , version_tuple as __version_tuple__ |
This file contains 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,3 @@ | ||
# This file is automatically generated by Hatch | ||
version = '0.1.dev10+g7941e46.d20241205' | ||
version_tuple = (0, 1, 'dev10', 'g7941e46.d20241205') |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
alternative workaround for type-checkers that still don't realize that
__all__
is always a sequence ofstr
in 2024: