Show More
@@ -47,7 +47,7 b' sdist:' | |||
|
47 | 47 | .PHONY: dev-env |
|
48 | 48 | ## Build sdist |
|
49 | 49 | dev-env: |
|
50 |
pip install -r requirements.txt -r |
|
|
50 | pip install -r requirements.txt -r requirements_debug.txt -r requirements_test.txt | |
|
51 | 51 | pip install -e . |
|
52 | 52 | |
|
53 | 53 | # Default command on calling make |
@@ -32,6 +32,26 b' zope.interface==5.5.2' | |||
|
32 | 32 | gunicorn==20.1.0 |
|
33 | 33 | waitress==2.1.2 |
|
34 | 34 | |
|
35 | # contains not directly required libraries we want to pin the version. | |
|
36 | ||
|
37 | atomicwrites==1.4.1 | |
|
38 | attrs==22.2.0 | |
|
39 | contextlib2==21.6.0 | |
|
40 | cffi==1.15.1 | |
|
41 | hupper==1.11 | |
|
42 | importlib-metadata==6.0.0 | |
|
43 | packaging==23.0 | |
|
44 | pathlib2==2.3.7.post1 | |
|
45 | pygments==2.14.0 | |
|
46 | pyparsing==3.0.9 | |
|
47 | psutil==5.9.4 | |
|
48 | pluggy==1.0.0 | |
|
49 | scandir==1.10.0 | |
|
50 | setproctitle==1.3.2 | |
|
51 | venusian==3.0.0 | |
|
52 | wcwidth==0.2.6 | |
|
53 | toml==0.10.2 | |
|
54 | ||
|
35 | 55 | ## test related requirements |
|
36 | 56 | -r requirements_test.txt |
|
37 | 57 |
@@ -142,7 +142,7 b' class JsonFormatter(ExceptionAwareFormat' | |||
|
142 | 142 | |
|
143 | 143 | self._required_fields = self.parse() |
|
144 | 144 | self._skip_fields = dict(list(zip(self._required_fields, |
|
145 | self._required_fields))) | |
|
145 | self._required_fields))) | |
|
146 | 146 | self._skip_fields.update(self.reserved_attrs) |
|
147 | 147 | |
|
148 | 148 | def _str_to_fn(self, fn_as_str): |
|
1 | NO CONTENT: file was removed |
General Comments 0
You need to be logged in to leave comments.
Login now