Friendly dependencies as default behavior#1721
Open
bmos wants to merge 37 commits intomove-coop:mainfrom
Open
Conversation
This reverts commit 1ff64e1.
Coverage reportClick to see where and how coverage changed
This report was generated by python-coverage-comment-action |
||||||||||||||||||||||||||||||||||||||||||||||||
8521b3a to
07ccedc
Compare
07ccedc to
3763c05
Compare
d7d4369 to
b77c03f
Compare
f324935 to
17037f0
Compare
This was referenced Feb 20, 2026
* Fix missing string closure in write_tests.rst * Fix sphinx warning "title overline too short" * autoclass :: -> autoclass:: * Fix sphinx warning "title underline too short" * Fix sphinx autodoc AttributeError parsing utilities.dbt * Fix sphinx error "Error in "code-block" directive" * Fix sphinx critical error unexpected section title from improper use of markdown code blocks in reStructuredText * Fix sphinx error "Unexpected indentation" * Fix sphinx warning "Inline strong start-string without end-string" * Fix sphinx warning "Duplicate explicit target name" * add missing toc entries * remove trailing whitespace from all files * ensure all files have newline at end of file * convert tabs to spaces in remaining two files * fix improperly-formatted links in zoom documentation * remove unecessary parentheses in method reference * replace tab characters with spaces in getting_set_up.rst * `Args:` -> `Args`: -> Args: (and Returns) * fix no-blank-line-after-section * fix no-blank-line-before-section * fix missing-blank-line-after-last-section * fix overindented-section * install censusgeocode * fix note syntax * fix autoclass references * resolve attempted slackclient import * add mock import for pytz and airtable * fix MobilizeAmerica path * fix inherited-members indentation * don't use autodoc module/class name hinting * add :members: to all autoclasses * try to fix remaining autodoc import warnings * save docs-build artifact on circleci (for testing) * resolve SyntaxWarning for \* in tofrom.py * fix artifact upload path * improve docstring formatting of actblue.py * resolving more docstring syntax errors * Inline strong start-string without end-string. * Duplicate explicit target name * Unknown target name * ERROR: Unknown directive type "notes". * Block quote ends without a blank line * fix Unexpected indentation * Duplicate explicit target name * Enumerated list ends without a blank line * Title underline too short * autodoc: failed to import class 'dbtRunnerParsons * Error parsing content block for the "list-table" directive: two-level bullet list expected, but row 4 does not contain a second-level bullet list. * Definition list ends without a blank line * unexpected unindent. * Bullet list ends without a blank line * link formatting * fix Unknown target name: "user" * Inline strong start-string without end-string * fixing a lot of errors and warnings * fix malformed table * exclude sphinx output from git * Upgrade CircleCI config * more docstring formatting * improve return/yield docstring formatting * don't try to overwrite existing .venv in circleci --------- Co-authored-by: Shauna Gordon-McKeon <shaunagm@gmail.com>
Contributor
Author
|
We either need to postpone adding python 3.14 for now or wait on this change. |
ad84596 to
f93e61c
Compare
f93e61c to
e8ae273
Compare
* remove circleci documentation workflow * move makefile logic to make.py and update sphinx config * create new documentation workflow * add sphinx-lint dependency, job, and pre-commit hook * add final newline, trailing whitespace, and yaml+toml syntax checks to pre-commit workflow * resolve unsupported theme option 'display_version' given * update source_suffix from list to dictionary * add sphinx workflow cache * exclude sphinx outputs from git * fix copying of index redirect * indentation for index.html * use furo theme * add furo to requirements-dev * keep old build files < 5.0.0 between runs * Update dependency-review.yml to whitelist url and remove GHSA allowance Removed specific GHSA allowance from dependency review action. * add pydocstyle ruff rules * reduce_rows raw docstring * run pre-commit * Delete .circleci directory * add make.py and conf.py to sphinx cache key --------- Co-authored-by: Shauna Gordon-McKeon <shaunagm@gmail.com>
aa38678 to
b0a508b
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Reconfigure the parsons install process to use the "friendly dependencies" feature as the default behavior instead of requiring the LIMITED_DEPENDENCIES environment variable.
As of #1679, we have had a FutureWarning in place upon importing parsons to try to warn our users about this upcoming change.
https://www.parsonsproject.org/pub/improving-the-parsons-installation-experience
User install flow will change from
pip install parsonstopip install parsons[all]to mimic previous behavior, but with the ability to install only a subset of dependencies likepip install parsons[airtable]. The range of compatible dependency versions is also greatly expanded.