-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump bleach from 3.2.1 to 3.3.0 Bumps [bleach](https://github.com/mozilla/bleach) from 3.2.1 to 3.3.0. - [Release notes](https://github.com/mozilla/bleach/releases) - [Changelog](https://github.com/mozilla/bleach/blob/master/CHANGES) - [Commits](mozilla/bleach@v3.2.1...v3.3.0) Signed-off-by: dependabot[bot] <[email protected]> * update deprecated import and reformat w/ black * reformatted all code w/ black * update Pipfile.lock * v2.0 release candidate (fixes #9, fixes #9) (#10) * changelog * add test for bug * use brackets for lists in env vars * update README and tests * README * modularize environment variable management * new modular architecture * type utils * pluggable providers * fix circular imports when running unit tests from root directory * documentation * docs Co-authored-by: Chris Haumesser <[email protected]> * update README * remove old python versions * rtd updates * typo * rtd * rtd * rtd * fix issues w/ python 3.8 typing Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Chris Haumesser <[email protected]>
- Loading branch information
1 parent
8870827
commit f27029f
Showing
6 changed files
with
38 additions
and
16 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: 2 | ||
build: | ||
os: "ubuntu-20.04" | ||
tools: | ||
python: "3.8" | ||
sphinx: | ||
configuration: docs/conf.py | ||
python: | ||
install: | ||
- requirements: docs/requirements.txt | ||
- method: pip | ||
path: . |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,17 +4,19 @@ author = Chris Haumesser | |
author-email = [email protected] | ||
summary = a configuration manager for python apps | ||
description-file = README.rst | ||
requires-python = >=3.6 | ||
requires-python = >=3.8 | ||
home-page = https://github.com/wryfi/cfitall | ||
classifier = | ||
License :: OSI Approved :: MIT License | ||
Natural Language :: English | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
|
||
[options] | ||
packages = find: | ||
install_requires = | ||
PyYAML <=6 | ||
|
||
[files] | ||
data_files = | ||
|