├── README.md ├── CODE_OF_CONDUCT.md └── SECURITY.md /README.md: -------------------------------------------------------------------------------- 1 | # .github 2 | 3 | Community health files for the @jupyter organization. 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # CODE OF CONDUCT 2 | 3 | The projects hosted in the JupyterLab organizations follow the 4 | [Project Jupyter Code of Conduct](https://github.com/jupyter/governance/blob/master/conduct/code_of_conduct.md). 5 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | Security Policy 2 | 3 | ## Reporting a Vulnerability 4 | 5 | If you find a security vulnerability in Jupyter you can: 6 | - open a private security issue on given repository (if not enable let us know by email, and we'll enable) 7 | - send report to security@jupyter.org (new since 2025) 8 | - send report to security@ipython.org (this email may be sunset in the future) 9 | 10 | 11 | See more information in our [docs](https://jupyter.org/security). 12 | --------------------------------------------------------------------------------