File tree Expand file tree Collapse file tree 6 files changed +69
-73
lines changed Expand file tree Collapse file tree 6 files changed +69
-73
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ name: Bug report
3
3
about : Open a bug report
4
4
title : " [bug] "
5
5
labels : bug
6
- assignees : ' '
7
-
6
+ assignees : " "
8
7
---
9
8
10
9
** Describe the bug**
11
10
A clear and concise description of the bug or unexpected behavior.
12
11
13
12
** Steps To Reproduce**
14
13
Steps to reproduce the behavior:
14
+
15
15
1 . Go to '...'
16
16
2 . Click on '....'
17
17
3 . Scroll down to '....'
@@ -24,7 +24,8 @@ A clear and concise description of what you expected to happen.
24
24
If applicable, add screenshots to help explain your problem.
25
25
26
26
** System Informatioon:**
27
- - OS: [ e.g. Ubuntu 24.04 LTS]
28
- - Python Version: [ e.g. Python 3.11.2]
29
- - Django Version: [ e.g. Django 4.2.5]
30
- - Browser and Browser Version (if applicable): [ e.g. Chromium v126.0.6478.126]
27
+
28
+ - OS: [ e.g. Ubuntu 24.04 LTS]
29
+ - Python Version: [ e.g. Python 3.11.2]
30
+ - Django Version: [ e.g. Django 4.2.5]
31
+ - Browser and Browser Version (if applicable): [ e.g. Chromium v126.0.6478.126]
Original file line number Diff line number Diff line change @@ -3,8 +3,7 @@ name: Feature request
3
3
about : Suggest an idea for this project
4
4
title : " [feature] "
5
5
labels : enhancement
6
- assignees : ' '
7
-
6
+ assignees : " "
8
7
---
9
8
10
9
** Is your feature request related to a problem? Please describe.**
Original file line number Diff line number Diff line change @@ -3,8 +3,7 @@ name: Question
3
3
about : Please use the Discussion Forum to ask questions
4
4
title : " [question] "
5
5
labels : question
6
- assignees : ' '
7
-
6
+ assignees : " "
8
7
---
9
8
10
9
Please use the [ Discussion Forum] ( https://github.com/openwisp/django-rest-framework-gis/discussions ) to ask questions.
Original file line number Diff line number Diff line change @@ -30,45 +30,45 @@ jobs:
30
30
matrix :
31
31
env :
32
32
# DRF 3.14
33
- - python : ' 3.9'
33
+ - python : " 3.9"
34
34
TOXENV : py39-django42-djangorestframework314
35
- - python : ' 3.10'
35
+ - python : " 3.10"
36
36
TOXENV : py310-django42-djangorestframework314
37
- - python : ' 3.11'
37
+ - python : " 3.11"
38
38
TOXENV : py311-django42-djangorestframework314
39
39
# DRF 3.15
40
- - python : ' 3.10'
40
+ - python : " 3.10"
41
41
TOXENV : py310-django50-djangorestframework315
42
- - python : ' 3.11'
42
+ - python : " 3.11"
43
43
TOXENV : py311-django50-djangorestframework315
44
- - python : ' 3.12'
44
+ - python : " 3.12"
45
45
TOXENV : py312-django50-djangorestframework315
46
- - python : ' 3.13'
46
+ - python : " 3.13"
47
47
TOXENV : py313-django50-djangorestframework315
48
- - python : ' 3.10'
48
+ - python : " 3.10"
49
49
TOXENV : py310-django51-djangorestframework315
50
- - python : ' 3.11'
50
+ - python : " 3.11"
51
51
TOXENV : py311-django51-djangorestframework315
52
- - python : ' 3.12'
52
+ - python : " 3.12"
53
53
TOXENV : py312-django51-djangorestframework315
54
54
# DRF 3.16
55
- - python : ' 3.11'
55
+ - python : " 3.11"
56
56
TOXENV : py311-django50-djangorestframework316
57
- - python : ' 3.12'
57
+ - python : " 3.12"
58
58
TOXENV : py312-django50-djangorestframework316
59
- - python : ' 3.11'
59
+ - python : " 3.11"
60
60
TOXENV : py311-django51-djangorestframework316
61
- - python : ' 3.12'
61
+ - python : " 3.12"
62
62
TOXENV : py312-django51-djangorestframework316
63
- - python : ' 3.13'
63
+ - python : " 3.13"
64
64
TOXENV : py313-django51-djangorestframework315
65
- - python : ' 3.10'
65
+ - python : " 3.10"
66
66
TOXENV : py310-django52-djangorestframework315
67
- - python : ' 3.11'
67
+ - python : " 3.11"
68
68
TOXENV : py311-django52-djangorestframework315
69
- - python : ' 3.12'
69
+ - python : " 3.12"
70
70
TOXENV : py312-django52-djangorestframework315
71
- - python : ' 3.13'
71
+ - python : " 3.13"
72
72
TOXENV : py313-django52-djangorestframework315
73
73
steps :
74
74
- uses : actions/checkout@v4
79
79
uses : actions/setup-python@v5
80
80
with :
81
81
python-version : ${{ matrix.env.python }}
82
- cache : ' pip'
82
+ cache : " pip"
83
83
cache-dependency-path : |
84
84
**/requirements*.txt
85
85
Original file line number Diff line number Diff line change @@ -17,16 +17,16 @@ jobs:
17
17
permissions :
18
18
id-token : write
19
19
steps :
20
- - uses : actions/checkout@v4
21
- - name : Set up Python
22
- uses : actions/setup-python@v5
23
- with :
24
- python-version : ' 3.10 '
25
- - name : Install dependencies
26
- run : |
27
- pip install -U pip
28
- pip install build
29
- - name : Build package
30
- run : python -m build
31
- - name : Publish package distributions to PyPI
32
- uses : pypa/gh-action-pypi-publish@v1.13.0
20
+ - uses : actions/checkout@v4
21
+ - name : Set up Python
22
+ uses : actions/setup-python@v5
23
+ with :
24
+ python-version : " 3.x "
25
+ - name : Install dependencies
26
+ run : |
27
+ pip install -U pip
28
+ pip install build
29
+ - name : Build package
30
+ run : python -m build
31
+ - name : Publish package distributions to PyPI
32
+ uses : pypa/gh-action-pypi-publish@v1.13.0
Original file line number Diff line number Diff line change 1
1
version : " 3.7"
2
2
3
-
4
3
services :
4
+ test :
5
+ build :
6
+ context : .
7
+ dockerfile : Dockerfile
8
+ depends_on :
9
+ - postgres
10
+ environment :
11
+ - DJANGO_SETTINGS_MODULE=settings
12
+ volumes :
13
+ - root_dir:/root
14
+ - ./rest_framework_gis:/project/rest_framework_gis
15
+ - ./tests:/project/tests
16
+ - ./README.rst:/project/README.rst
17
+ - ./setup.py:/project/setup.py
18
+ command : sh -c "pip install -e . && python ./tests/manage.py test tests/django_restframework_gis_tests && ./run-qa-checks"
5
19
6
- test :
7
- build :
8
- context : .
9
- dockerfile : Dockerfile
10
- depends_on :
11
- - postgres
12
- environment :
13
- - DJANGO_SETTINGS_MODULE=settings
14
- volumes :
15
- - root_dir:/root
16
- - ./rest_framework_gis:/project/rest_framework_gis
17
- - ./tests:/project/tests
18
- - ./README.rst:/project/README.rst
19
- - ./setup.py:/project/setup.py
20
- command : sh -c "pip install -e . && python ./tests/manage.py test tests/django_restframework_gis_tests && ./run-qa-checks"
21
-
22
- postgres :
23
- image : postgis/postgis:15-3.4-alpine
24
- environment :
25
- POSTGRES_PASSWORD : postgres
26
- POSTGRES_USER : postgres
27
- POSTGRES_DB : django_restframework_gis
28
- ports :
29
- - 5432:5432
30
- volumes :
31
- - postgres_data:/var/lib/postgresql/data
32
-
20
+ postgres :
21
+ image : postgis/postgis:15-3.4-alpine
22
+ environment :
23
+ POSTGRES_PASSWORD : postgres
24
+ POSTGRES_USER : postgres
25
+ POSTGRES_DB : django_restframework_gis
26
+ ports :
27
+ - 5432:5432
28
+ volumes :
29
+ - postgres_data:/var/lib/postgresql/data
33
30
34
31
volumes :
35
- postgres_data :
36
- root_dir :
32
+ postgres_data :
33
+ root_dir :
You can’t perform that action at this time.
0 commit comments