|
|
|
|
|
|
|
|
|
| |
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
|