Skip to content

Commit e029795

Browse files
authored
Merge branch 'develop' into add-following-tab
2 parents 3a1bc11 + 220ce40 commit e029795

File tree

5 files changed

+19
-47
lines changed

5 files changed

+19
-47
lines changed

.all-contributorsrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -915,6 +915,15 @@
915915
"contributions": [
916916
"code"
917917
]
918+
},
919+
{
920+
"login": "werberger",
921+
"name": "werb",
922+
"avatar_url": "https://avatars.githubusercontent.com/u/106753124?v=4",
923+
"profile": "https://github.com/werberger",
924+
"contributions": [
925+
"bug"
926+
]
918927
}
919928
],
920929
"contributorsPerLine": 7,

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
![GitHub labels](https://img.shields.io/github/labels/CiviWiki/OpenCiviWiki/help%20wanted)
88

99
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
10-
[![All Contributors](https://img.shields.io/badge/all_contributors-95-orange.svg?style=flat-square)](#contributors-)
10+
[![All Contributors](https://img.shields.io/badge/all_contributors-96-orange.svg?style=flat-square)](#contributors-)
1111
<!-- ALL-CONTRIBUTORS-BADGE:END -->
1212

1313
[![ComVer](https://img.shields.io/badge/ComVer-compliant-brightgreen.svg)](https://github.com/staltz/comver)
@@ -163,6 +163,7 @@ Thanks to these wonderful people ([emoji key](https://allcontributors.org/docs/e
163163
<td align="center"><a href="https://github.com/tberm"><img src="https://avatars.githubusercontent.com/u/49910363?v=4?s=100" width="100px;" alt="tberm"/><br /><sub><b>tberm</b></sub></a><br /><a href="https://github.com/CiviWiki/OpenCiviWiki/commits?author=tberm" title="Code">💻</a></td>
164164
<td align="center"><a href="https://github.com/terrencetuy"><img src="https://avatars3.githubusercontent.com/u/13714060?v=4?s=100" width="100px;" alt="terrencetuy"/><br /><sub><b>terrencetuy</b></sub></a><br /><a href="https://github.com/CiviWiki/OpenCiviWiki/commits?author=terrencetuy" title="Code">💻</a></td>
165165
<td align="center"><a href="https://github.com/wassafshahzad"><img src="https://avatars.githubusercontent.com/u/25094157?v=4?s=100" width="100px;" alt="wassaf shahzad"/><br /><sub><b>wassaf shahzad</b></sub></a><br /><a href="https://github.com/CiviWiki/OpenCiviWiki/commits?author=wassafshahzad" title="Code">💻</a> <a href="https://github.com/CiviWiki/OpenCiviWiki/commits?author=wassafshahzad" title="Tests">⚠️</a> <a href="#infra-wassafshahzad" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
166+
<td align="center"><a href="https://github.com/werberger"><img src="https://avatars.githubusercontent.com/u/106753124?v=4?s=100" width="100px;" alt="werb"/><br /><sub><b>werb</b></sub></a><br /><a href="https://github.com/CiviWiki/OpenCiviWiki/issues?q=author%3Awerberger" title="Bug reports">🐛</a></td>
166167
<td align="center"><a href="https://www.facebook.com/zafar.hussain2000"><img src="https://avatars.githubusercontent.com/u/7498674?v=4?s=100" width="100px;" alt="zafar hussain"/><br /><sub><b>zafar hussain</b></sub></a><br /><a href="https://github.com/CiviWiki/OpenCiviWiki/commits?author=zafar-hussain" title="Documentation">📖</a></td>
167168
</tr>
168169
</tbody>

poetry.lock

Lines changed: 2 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

project/core/settings.py

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -198,16 +198,13 @@
198198
LOGGING = {
199199
"version": 1,
200200
"disable_existing_loggers": False,
201-
"formatters": {"rich": {"datefmt": "[%X]"}},
202201
"handlers": {
203202
"console": {
204-
"class": "rich.logging.RichHandler",
205-
"formatter": "rich",
206-
"level": "WARNING",
207-
# "filters": ["require_debug_true"],
208-
"rich_tracebacks": True,
209-
"tracebacks_show_locals": True,
210-
}
203+
"class": "logging.StreamHandler",
204+
},
205+
},
206+
"root": {
207+
"handlers": ["console"],
208+
"level": "WARNING",
211209
},
212-
"loggers": {"django": {"handlers": ["console"]}},
213210
}

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ psycopg2-binary = "^2.9.3"
1818
django-taggit = "^3.0.0"
1919
Pillow = "^9.2.0"
2020
requests = "^2.28.1"
21-
rich = "^12.5.1"
2221

2322
[tool.poetry.dev-dependencies]
2423
black = "^22.6.0"

0 commit comments

Comments
 (0)