Skip to content

Commit 4857d9b

Browse files
committed
Merge remote-tracking branch 'origin/main' into release
2 parents 2f196fa + 019c062 commit 4857d9b

File tree

5 files changed

+5
-10
lines changed

5 files changed

+5
-10
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ default:
44
@$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null\
55
| awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}'\
66
| sort\
7-
| egrep -v -e '^[^[:alnum:]]' -e '^$@$$'
7+
| grep -E -v -e '^[^[:alnum:]]' -e '^$@$$'
88
@echo
99
@exit 1
1010

base-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ requests[security]>=2.26.0
3636
django-honeypot==1.0.4 # 1.0.4 is first version that supports Django 4.2
3737
django-markupfield==2.0.1
3838

39-
django-allauth==0.57.2 # 0.55.0 is first version that supports Django 4.2
39+
django-allauth==64.2.1
4040

4141
django-waffle==2.2.1
4242

docs/source/administration.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Pages are individual entire pages of markup content. They are require ``Title``
4646
:Is Published: Controls whether or not the page is visible on the site.
4747
:Template Name: By default Pages use the template ``templates/pages/default.html`` to use a different template enter the template path here.
4848

49-
.. note:: Pages are automatically purge from Fastly.com upon save.
49+
.. note:: Pages are automatically purged from Fastly.com upon save.
5050

5151
.. _boxes:
5252

@@ -82,7 +82,7 @@ Release Files have a checkbox named 'Download button' that determines which bina
8282
Jobs
8383
----
8484

85-
The jobs application is using to display Python jobs on the site. The data items should be fairly self explanatory. There are a couple of things to keep in mind. Logged in users of the site can submit jobs for review.
85+
The jobs application is used to display Python jobs on the site. The data items should be fairly self explanatory. There are a couple of things to keep in mind. Logged in users of the site can submit jobs for review.
8686

8787
:Status: Jobs enter the system in 'review' status after the submitter has entered them. Only jobs in the 'approved' state are displayed on the site.
8888
:Featured: Featured jobs are displayed more prominently on the landing page.

jobs/tests/test_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def test_visible_manager(self):
7676
j3 = factories.ApprovedJobFactory(expires=past)
7777

7878
visible = Job.objects.visible()
79-
self.assertTrue(len(visible), 1)
79+
self.assertEqual(len(visible), 1)
8080
self.assertIn(j1, visible)
8181
self.assertNotIn(j2, visible)
8282
self.assertNotIn(j3, visible)

pydotorg/settings/base.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,6 @@
230230

231231
'allauth',
232232
'allauth.account',
233-
'allauth.socialaccount',
234-
#'allauth.socialaccount.providers.facebook',
235-
#'allauth.socialaccount.providers.github',
236-
#'allauth.socialaccount.providers.openid',
237-
#'allauth.socialaccount.providers.twitter',
238233

239234
# Tastypie needs the `users` app to be already loaded.
240235
'tastypie',

0 commit comments

Comments
 (0)