-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #84: Improve import and initialization
Altered job, queue, and __init__ modules to delay any initialization that requires queue parsing until absolutely required—so all checks happen just in time, and not at import or initialization. This makes everything a lot faster and more efficient. Also fixes documentation on readthedocs and makes test skipping more robust in a variety of situations.
- Loading branch information
Showing
15 changed files
with
241 additions
and
127 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
# Ipython | ||
.ipynb_checkpoints | ||
|
||
# Vim | ||
.*neomake* | ||
|
||
# Apple's junk | ||
.DS_Store | ||
|
||
|
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 |
---|---|---|
@@ -1,11 +1,9 @@ | ||
# Requirements for building the Fyrd documentation | ||
pytest | ||
sphinx>=1.4.1 | ||
CommonMark>=0.5.6 | ||
Sphinx>=1.7.1 | ||
dill>=0.2.5 | ||
tabulate>=0.7.7 | ||
six>=1.10.0 | ||
tblib>=1.3.0 | ||
sphinxcontrib-napoleon>=0.5.3 | ||
versioneer>=0.18 | ||
# sphinx-argparse>=0.2.0 | ||
psutil>=5.2 | ||
Pyro4>=4.70 | ||
six>=1.11.0 | ||
tqdm>=4.19.0 | ||
tabulate>=0.8.2 | ||
sqlalchemy>=1.2.0 |
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 @@ | ||
name: fyrd-docs | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- python=3.6 | ||
- sphinx | ||
- psutil | ||
- Pyro4 | ||
- sqlalchemy | ||
- dill | ||
- tabulate | ||
- pip: | ||
- tqdm |
Binary file not shown.
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
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
Oops, something went wrong.