-
Notifications
You must be signed in to change notification settings - Fork 3
/
win_makewheels.sh
33 lines (33 loc) · 1.6 KB
/
win_makewheels.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
conda activate py3.8
python -m pip install -r requirements-dev.txt
python -m pip uninstall --yes hopsy && python setup.py bdist_wheel
python -m pip install --no-input --user dist/hopsy-1.5.2-cp38-cp38-win_amd64.whl --force-reinstall --no-deps
python -c "import hopsy; print(hopsy.__version__, hopsy.__build__)"
conda deactivate
conda activate py3.9 && python -m pip uninstall --yes hopsy
python -m pip install -r requirements-dev.txt
python setup.py bdist_wheel
python -m pip install --no-input --user dist/hopsy1.5.2-cp39-cp39-win_amd64.whl --force-reinstall --no-deps
python -c "import hopsy; print(hopsy.__version__, hopsy.__build__)"
conda deactivate
conda activate py3.10
python -m pip install -r requirements-dev.txt
python -m pip uninstall --yes hopsy
python setup.py bdist_wheel
python -m pip install --no-input --user dist/hopsy-1.5.2-cp310-cp310-win_amd64.whl --force-reinstall --no-deps
python -c "import hopsy; print(hopsy.__version__, hopsy.__build__)"
conda deactivate
conda activate py3.11
python -m pip install -r requirements-dev.txt
python -m pip uninstall --yes hopsy
python setup.py bdist_wheel
python -m pip install --no-input --user dist/hopsy-1.5.2-cp311-cp311-win_amd64.whl --force-reinstall --no-deps
python -c "import hopsy; print(hopsy.__version__, hopsy.__build__)"
conda deactivate
conda activate py3.12
python -m pip install -r requirements-dev.txt
python -m pip uninstall --yes hopsy
python setup.py bdist_wheel
python -m pip install --no-input --user dist/hopsy-1.5.2-cp312-cp312-win_amd64.whl --force-reinstall --no-deps
python -c "import hopsy; print(hopsy.__version__, hopsy.__build__)"
conda deactivate