├── .github ├── PULL_REQUEST_TEMPLATE │ └── new_spec.md └── pull_request_template.md ├── .gitignore ├── .pre-commit-config.yaml ├── .tools ├── README ├── tests │ └── test_prompt.py └── tools.py ├── LICENSE ├── Makefile ├── README.md ├── _index.md ├── core-projects ├── _index.md ├── ipython.md ├── matplotlib.md ├── networkx.md ├── numpy.md ├── pandas.md ├── pysal.md ├── register.py ├── scikit-hep.md ├── scikit-image.md ├── scikit-learn.md ├── scipy.md ├── xarray.md └── zarr.md ├── netlify.toml ├── purpose-and-process └── _index.md ├── pyproject.toml ├── quickstart.py ├── requirements.txt ├── spec-0000 ├── SPEC0_versions.py ├── chart.md ├── index.md └── schedule.md ├── spec-0001 └── index.md ├── spec-0002 └── index.md ├── spec-0003 └── index.md ├── spec-0004 └── index.md ├── spec-0005 └── index.md ├── spec-0006 └── index.md ├── spec-0007 ├── index.md ├── test_transition_to_rng.py └── transition_to_rng.py ├── spec-0008 └── index.md ├── spec-0009 └── index.md └── steering-committee ├── _index.md ├── emeritus-spec-steering-committee.toml └── spec-steering-committee.toml /.github/PULL_REQUEST_TEMPLATE/new_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/.github/PULL_REQUEST_TEMPLATE/new_spec.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | \#* 3 | **/__pycache__ 4 | .idea 5 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/.tools/README -------------------------------------------------------------------------------- /.tools/tests/test_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/.tools/tests/test_prompt.py -------------------------------------------------------------------------------- /.tools/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/.tools/tools.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/README.md -------------------------------------------------------------------------------- /_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/_index.md -------------------------------------------------------------------------------- /core-projects/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/core-projects/_index.md -------------------------------------------------------------------------------- /core-projects/ipython.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/core-projects/ipython.md -------------------------------------------------------------------------------- /core-projects/matplotlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/core-projects/matplotlib.md -------------------------------------------------------------------------------- /core-projects/networkx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/core-projects/networkx.md -------------------------------------------------------------------------------- /core-projects/numpy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/core-projects/numpy.md -------------------------------------------------------------------------------- /core-projects/pandas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/core-projects/pandas.md -------------------------------------------------------------------------------- /core-projects/pysal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/core-projects/pysal.md -------------------------------------------------------------------------------- /core-projects/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/core-projects/register.py -------------------------------------------------------------------------------- /core-projects/scikit-hep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/core-projects/scikit-hep.md -------------------------------------------------------------------------------- /core-projects/scikit-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/core-projects/scikit-image.md -------------------------------------------------------------------------------- /core-projects/scikit-learn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/core-projects/scikit-learn.md -------------------------------------------------------------------------------- /core-projects/scipy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/core-projects/scipy.md -------------------------------------------------------------------------------- /core-projects/xarray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/core-projects/xarray.md -------------------------------------------------------------------------------- /core-projects/zarr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/core-projects/zarr.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/netlify.toml -------------------------------------------------------------------------------- /purpose-and-process/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/purpose-and-process/_index.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/quickstart.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/requirements.txt -------------------------------------------------------------------------------- /spec-0000/SPEC0_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/spec-0000/SPEC0_versions.py -------------------------------------------------------------------------------- /spec-0000/chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/spec-0000/chart.md -------------------------------------------------------------------------------- /spec-0000/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/spec-0000/index.md -------------------------------------------------------------------------------- /spec-0000/schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/spec-0000/schedule.md -------------------------------------------------------------------------------- /spec-0001/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/spec-0001/index.md -------------------------------------------------------------------------------- /spec-0002/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/spec-0002/index.md -------------------------------------------------------------------------------- /spec-0003/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/spec-0003/index.md -------------------------------------------------------------------------------- /spec-0004/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/spec-0004/index.md -------------------------------------------------------------------------------- /spec-0005/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/spec-0005/index.md -------------------------------------------------------------------------------- /spec-0006/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/spec-0006/index.md -------------------------------------------------------------------------------- /spec-0007/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/spec-0007/index.md -------------------------------------------------------------------------------- /spec-0007/test_transition_to_rng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/spec-0007/test_transition_to_rng.py -------------------------------------------------------------------------------- /spec-0007/transition_to_rng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/spec-0007/transition_to_rng.py -------------------------------------------------------------------------------- /spec-0008/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/spec-0008/index.md -------------------------------------------------------------------------------- /spec-0009/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/spec-0009/index.md -------------------------------------------------------------------------------- /steering-committee/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/steering-committee/_index.md -------------------------------------------------------------------------------- /steering-committee/emeritus-spec-steering-committee.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/steering-committee/emeritus-spec-steering-committee.toml -------------------------------------------------------------------------------- /steering-committee/spec-steering-committee.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scientific-python/specs/HEAD/steering-committee/spec-steering-committee.toml --------------------------------------------------------------------------------