v1.1.1
ChrisMcCarthyDev
released this
10 Mar 12:09
·
1110 commits
to main
since this release
YAWNING-TITAN v1.1.1
Yawning-Titan v1.1.1 is a bugfix version for Yawning-Titan v1.1.0.
🐛 Bug Fixes
VERSION file not included in MANIFEST.in or in data_files in the setup.py
The VERSION
file which acts as the single source of truth for the Yawning-Titan version number was not included in a MANIFEST.in
file or as data_files
in the setup.py
. This caused the install from a sdist .tar.gz file to fail as a VERSION
file didn't exist.
✨ How to Install & Run
First time installing Yawning-Titan?
Windows
mkdir ~\yawning_titan
cd ~\yawning_titan
python3 -m venv .venv
attrib +h .venv /s /d # Hides the .venv directory
.\.venv\Scripts\activate
pip install <path to the downloaded yawningtitan-1.1.1.tar.gz file>
Unix
mkdir ~/yawning_titan
cd ~/yawning_titan
python3 -m venv .venv
source .venv/bin/activate
pip install <path to the downloaded yawningtitan-1.1.1.tar.gz file>
Updating an existing install?
Windows
cd ~\yawning_titan
.\.venv\Scripts\activate
pip install <path to the downloaded yawningtitan-1.1.1.tar.gz file>
Unix
cd ~/yawning_titan
source .venv/bin/activate
pip install <path to the downloaded yawningtitan-1.1.1.tar.gz file>
Run Yawning-Titan in Jupyter Lab
Windows
cd ~\yawning_titan
.\.venv\Scripts\activate
cd ~\yawning_titan\notebooks
jupyter lab
Unix
cd ~/yawning_titan
source .venv/bin/activate
cd ~/yawning_titan/notebooks
jupyter lab
Contributors
- @ChrisMcCarthyDev part of the Yawning-Titan dev team.
Full Changelog: v1.1.0...v1.1.1