Skip to content

Commit

Permalink
Setuptools readed
Browse files Browse the repository at this point in the history
  • Loading branch information
srugano committed Oct 14, 2024
1 parent 18a4850 commit 68cf9af
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ dependencies = [
"django-stubs-ext",
"uwsgi",
"django-smart-env",
"django-webtest"
"django-webtest",
"setuptools>=75.1.0",
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 2 additions & 0 deletions src/hope_country_report/apps/core/management/commands/env.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from typing import Any, Dict

from django.core.management import BaseCommand, CommandError, CommandParser

from hope_country_report.config import env


Expand Down
1 change: 1 addition & 0 deletions src/hope_country_report/apps/hope/models/_inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
# DO NOT rename the models, AND don't rename db_table values or field names.
import django.contrib.postgres.fields
from django.contrib.gis.db import models

from hope_country_report.apps.hope.models._base import HopeModel
from hope_country_report.apps.power_query.storage import HopeStorage

Expand Down
1 change: 1 addition & 0 deletions src/hope_country_report/config/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from enum import Enum

from smart_env import SmartEnv

DJANGO_HELP_BASE = "https://docs.djangoproject.com/en/5.0/ref/settings"
Expand Down
2 changes: 1 addition & 1 deletion src/hope_country_report/web/views/charts.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from typing import Any, Callable

from django.contrib.auth.mixins import PermissionRequiredMixin
from django.http import HttpResponseBase
from django.db.models.query import QuerySet
from django.http import HttpResponseBase
from django.views.generic import DetailView, ListView

from hope_country_report.apps.power_query.utils import to_dataset
Expand Down

0 comments on commit 68cf9af

Please sign in to comment.