summaryrefslogtreecommitdiff
path: root/.devcontainer
Commit message (Collapse)AuthorAgeFilesLines
* DEV: Fix devcontainer configuration (#22785)JP Ungaretti2022-12-164-82/+20
| | | | | | | | | | This PR fixes numpy's devcontainer.json to successfully create an Anaconda environment. You can test this new devcontainer.json by creating a codespace for my fork/branch: https://github.com/codespaces/new?hide_repo_select=true&ref=jungaretti%2Ffix-devcontainer&repo=576410652 Changes * Removed references to Microsoft's anaconda-0.3 image. This image is deprecated. For a list of maintained images, see https://github.com/devcontainers/images * Added a new setup.sh script that is run by postCreateCommand and removed the unnecessary Dockerfile. For more information about devcontainer lifecycle scripts, see https://containers.dev/implementors/json_reference/#lifecycle-scripts * Increases memory requirement to 8 GB. Anaconda environment creation seems to fail when only 4 GB of memory are available. This hostRequirements addition will ensure that the environment is created successfully with GitHub Codespaces. * Remove unnecessary rust dependency
* DEV: Add initial devcontainer config for codepaces (#22722)Inessa Pawson2022-12-033-0/+91
* initial files * STY: remove noop.txt (we have an environment.yaml) some other style fixups Co-authored-by: Sarah Kaiser <sckaiser@sckaiser.com>