-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
44 additions
and
2 deletions.
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
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,13 @@ | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
|
||
HERE=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) | ||
|
||
rm "${HERE}/../community/ceps/*.md" || true | ||
pushd $(mktemp -d) | ||
curl -L https://github.com/conda/ceps/archive/refs/heads/main.tar.gz -o ceps.tar.gz | ||
tar -xf ceps.tar.gz | ||
for f in ceps-main/cep-*.md; do | ||
mv "$f" "${HERE}/../community/ceps" | ||
done | ||
popd |
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
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,14 @@ | ||
# Conda Enhancement Proposals (CEPs) | ||
|
||
Conda is an Open Source project with a diverse and wide-ranging ecosystem. | ||
|
||
To better allow community members to provide feedback and proposals for conda's implementation, | ||
all major changes should be submitted as a **Conda Enhancement Proposal** (CEP). | ||
|
||
The list below is automatically populated from the [`conda/ceps`](https://github.com/conda/ceps) repository. | ||
|
||
## Minutes | ||
|
||
import DocCardList from "@theme/DocCardList"; | ||
|
||
<DocCardList /> |
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