-
-
Notifications
You must be signed in to change notification settings - Fork 346
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
4 changed files
with
90 additions
and
0 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,27 @@ | ||
@ECHO OFF | ||
set "title=PyPy support is now deprecated!" | ||
set "message=PyPy support is now deprecated! Future Miniforge releases will NOT build installers with PyPy in their base envonrment. We advise you switch to Miniforge at your earliest convenience. More details at https://conda-forge.org/news/2024/08/14/sunsetting-pypy/ If you require Mambaforge, you may pin your installer to one found in https://github.com/conda-forge/miniforge/releases/tag/24.7.1-0" | ||
if "%GITHUB_ACTIONS%"=="true" ( | ||
echo ::warning title=%title%::%message% | ||
) else ( | ||
powershell "(New-Object -ComObject Wscript.Shell).Popup('%message%',0,'%title%',0x30)" >NUL | ||
) | ||
|
||
for /f "delims=" %%# in ('powershell get-date -format "{yyyy-MM-dd}"') do @set _date=%%# | ||
if "%_date%"=="2024-10-01" exit 1 | ||
if "%_date%"=="2024-10-15" exit 1 | ||
if "%_date%"=="2024-11-01" exit 1 | ||
if "%_date%"=="2024-11-10" exit 1 | ||
if "%_date%"=="2024-11-20" exit 1 | ||
if "%_date%"=="2024-11-30" exit 1 | ||
if "%_date%"=="2024-12-05" exit 1 | ||
if "%_date%"=="2024-12-10" exit 1 | ||
if "%_date%"=="2024-12-15" exit 1 | ||
if "%_date%"=="2024-12-20" exit 1 | ||
if "%_date%"=="2024-12-25" exit 1 | ||
if "%_date%"=="2024-12-30" exit 1 | ||
if "%_date%"=="2024-12-31" exit 1 | ||
if "%_date:~0,4%"=="2025" exit 1 | ||
|
||
echo Sleeping for 30s... | ||
powershell -c "& {sleep 30}" |
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,27 @@ | ||
#!/bin/bash | ||
|
||
if [[ "$GITHUB_ACTIONS" == "true" ]]; then | ||
echo "::warning title=Mambaforge is now deprecated!::Future Miniforge releases will NOT build Mambaforge installers. We advise you switch to Miniforge at your earliest convenience. More details at https://conda-forge.org/news/2024/07/29/sunsetting-mambaforge/." | ||
else | ||
echo "!!!!!! Conda-Forge PyPy is now deprecated !!!!!" | ||
echo "Future Miniforge releases will NOT build with PyPy in the base environment installers." | ||
echo "We advise you switch to Miniforge3 at your earliest convenience." | ||
echo "More details at https://conda-forge.org/news/2024/08/14/sunsetting-pypy/" | ||
echo "If you are unable to switch to Miniforge, you may pin your installer version to one found in " | ||
echo "https://github.com/conda-forge/miniforge/releases/tag/24.3.0-1" | ||
echo "or if you lack the system requirements (Linux glibc >= 2.17, or macOS + x86-64bit >= 10.13)" | ||
echo "you may pin your installer to one older version found in " | ||
echo "https://github.com/conda-forge/miniforge/releases/tag/24.3.0-0" | ||
echo "This Miniforge installer will ceese to work in 2025." | ||
fi | ||
|
||
case $(date +%F) in | ||
# Brownouts | ||
2024-10-01|2024-10-15|2024-11-01|2024-11-10|2024-11-20|2024-11-30|2024-12-05|2024-12-10|2024-12-15|2024-12-20|2024-12-25|2024-12-30|2024-12-31|2025-*) | ||
exit 1 | ||
;; | ||
*) | ||
echo "Sleeping for 30s..." | ||
sleep 30 | ||
;; | ||
esac |
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