-
Notifications
You must be signed in to change notification settings - Fork 930
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'white/master' of gitlab.com:faradaysec/faraday into whi…
…te/master
- Loading branch information
Showing
13 changed files
with
75 additions
and
15 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,2 @@ | ||
* MOD only show settings of this version in faraday-manage settings | ||
* FIX update minimum version of click dependency |
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 @@ | ||
Jul 2nd, 2021 |
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
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 |
---|---|---|
|
@@ -24,6 +24,3 @@ def get_default_config(self): | |
|
||
def init_setting(): | ||
DashboardSettings() | ||
|
||
|
||
init_setting() |
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 |
---|---|---|
|
@@ -35,6 +35,3 @@ def get_default_config(self): | |
|
||
def init_setting(): | ||
ReportsSettings() | ||
|
||
|
||
init_setting() |
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 |
---|---|---|
|
@@ -44,6 +44,3 @@ def get_default_config(self): | |
|
||
def init_setting(): | ||
SMTPSettings() | ||
|
||
|
||
init_setting() |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# WARNING: This file was automatically generated. You should avoid editing it. | ||
# If you run pynixify again, the file will be either overwritten or | ||
# deleted, and you will lose the changes you made to it. | ||
|
||
{ buildPythonPackage | ||
, fetchPypi | ||
, importlib-metadata | ||
, lib | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = | ||
"click"; | ||
version = | ||
"8.0.1"; | ||
|
||
src = | ||
fetchPypi { | ||
inherit | ||
pname | ||
version; | ||
sha256 = | ||
"0ymdyf37acq4qxh038q0xx44qgj6y2kf0jd0ivvix6qij88w214c"; | ||
}; | ||
|
||
propagatedBuildInputs = | ||
[ | ||
importlib-metadata | ||
]; | ||
|
||
# TODO FIXME | ||
doCheck = | ||
false; | ||
|
||
meta = | ||
with lib; | ||
{ }; | ||
} |
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