Set draft flag to false

This commit is contained in:
Brandon Rozek 2022-12-01 21:37:18 -05:00
parent 6ec604d2be
commit ecc22fcb52

View file

@ -1,7 +1,7 @@
--- ---
title: "Quick Python: Check Submodule Load" title: "Quick Python: Check Submodule Load"
date: 2022-12-01T21:12:03-05:00 date: 2022-12-01T21:12:03-05:00
draft: true draft: false
tags: ["Python"] tags: ["Python"]
math: false math: false
--- ---
@ -73,4 +73,4 @@ Notice the `+` behind the second submodule. According to the man page for `git s
The existence of the `+` would make this check fail. However, no prefixes will make the check succeed. The existence of the `+` would make this check fail. However, no prefixes will make the check succeed.
By executing this function within the repositories `setup.py`, it verifies that the needed dependencies are checked out and clean before installing the python package. Checks like these make python packages feel a little more stable. By executing this function within the repositories `setup.py`, it verifies that the needed dependencies are checked out and clean before installing the python package. Checks like these make python packages feel a little more stable.