Skip to content

Commit f0bb211

Browse files
authored
rename repo to django-mongodb-backend (#211)
* Rename django-mongodb -> django-mongodb-backend * Rename django-mongodb -> django-mongodb-backend
1 parent fb60da0 commit f0bb211

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

.evergreen/run-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -eux
44

5-
# Install the django-mongodb backend
5+
# Install django-mongodb-backend
66
/opt/python/3.10/bin/python3 -m venv venv
77
. venv/bin/activate
88
python -m pip install -U pip

.github/workflows/release-python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ on:
1616

1717
env:
1818
# Changes per repo
19-
PRODUCT_NAME: django-mongodb
19+
PRODUCT_NAME: django-mongodb-backend
2020
# Changes per branch
21-
SILK_ASSET_GROUP: django-mongodb-main
22-
EVERGREEN_PROJECT: django-mongodb
21+
SILK_ASSET_GROUP: django-mongodb-backend-main
22+
EVERGREEN_PROJECT: django-mongodb-backend
2323

2424
defaults:
2525
run:

.github/workflows/test-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
name: Django Test Suite
2222
runs-on: ubuntu-latest
2323
steps:
24-
- name: Checkout django-mongodb
24+
- name: Checkout django-mongodb-backend
2525
uses: actions/checkout@v4
2626
with:
2727
persist-credentials: false
28-
- name: install the django-mongodb backend
28+
- name: install django-mongodb-backend
2929
run: |
3030
pip3 install --upgrade pip
3131
pip3 install -e .

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ explore and build. The best way to share this is via our [MongoDB Community Foru
88

99
The development version of this package supports Django 5.0.x. To install it:
1010

11-
`pip install git+https://github.com/mongodb-labs/django-mongodb`
11+
`pip install git+https://github.com/mongodb-labs/django-mongodb-backend`
1212

1313
### Specifying the default primary key field
1414

THIRD-PARTY-NOTICES

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
django-mongodb uses third-party libraries or other resources that may
1+
django-mongodb-backend uses third-party libraries or other resources that may
22
be distributed under licenses different than this software.
33

44
The attached notices are provided for information only.
55

6-
django-mongodb began by borrowing code from Django non-rel's
6+
django-mongodb-backend began by borrowing code from Django non-rel's
77
django-mongodb-engine (https://github.com/django-nonrel/mongodb-engine),
88
abandoned since 2015 and Django 1.6.
99

django_mongodb_backend/features.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
4040
supports_temporal_subtraction = True
4141
# MongoDB stores datetimes in UTC.
4242
supports_timezones = False
43-
# Not implemented: https://github.com/mongodb-labs/django-mongodb/issues/7
43+
# Not implemented: https://github.com/mongodb-labs/django-mongodb-backend/issues/7
4444
supports_transactions = False
4545
supports_unspecified_pk = True
4646
uses_savepoints = False
@@ -566,7 +566,7 @@ def django_test_expected_failures(self):
566566
"cache.tests.DBCacheWithTimeZoneTests",
567567
},
568568
"FilteredRelation not supported.": {
569-
# https://github.com/mongodb-labs/django-mongodb/issues/157
569+
# https://github.com/mongodb-labs/django-mongodb-backend/issues/157
570570
"filtered_relation.tests.FilteredRelationAggregationTests",
571571
"filtered_relation.tests.FilteredRelationAnalyticalAggregationTests",
572572
"filtered_relation.tests.FilteredRelationTests",

docs/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
django-mongodb 5.0.x documentation
2-
==================================
1+
django-mongodb-backend 5.0.x documentation
2+
==========================================
33

44
.. toctree::
55
:maxdepth: 1

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ docs = [ "sphinx>=7"]
3838
[project.urls]
3939
Homepage = "https://www.mongodb.org"
4040
Documentation = "https://django-mongodb-backend.readthedocs.io"
41-
Source = "https://github.com/mongodb-labs/django-mongodb"
42-
Tracker = "https://github.com/mongodb-labs/django-mongodb/issues"
41+
Source = "https://github.com/mongodb-labs/django-mongodb-backend"
42+
Tracker = "https://github.com/mongodb-labs/django-mongodb-backend/issues"
4343

4444
[tool.hatch.version]
4545
path = "django_mongodb_backend/__init__.py"

0 commit comments

Comments
 (0)