File tree Expand file tree Collapse file tree 4 files changed +18
-13
lines changed Expand file tree Collapse file tree 4 files changed +18
-13
lines changed Original file line number Diff line number Diff line change
1
+ ** /. *
1
2
** /.git
2
3
** /.gitignore
3
4
** /.github
9
10
** /.DS_Store
10
11
** /.aof
11
12
** /venv
13
+ ** /.venv
12
14
** /env
13
15
** /bin
14
16
** /build
18
20
** /lib
19
21
** /var
20
22
** /* .egg-info
23
+ ** /. * cache
21
24
.dockerignore
22
25
.readthedocs.yaml
23
26
docker.env
24
27
.env
25
28
CHANGELOG.rst
29
+ MANIFEST.in
30
+ Makefile
26
31
Dockerfile
27
32
README.rst
28
33
docker-compose.yml
Original file line number Diff line number Diff line change 20
20
# ScanCode.io is a free software code scanning tool from nexB Inc. and others.
21
21
# Visit https://github.com/nexB/scancode.io for support and download.
22
22
23
- FROM --platform=linux/amd64 python:3.12-slim
23
+ FROM python:3.12-slim
24
24
25
25
LABEL org.opencontainers.image.source="https://github.com/nexB/scancode.io"
26
26
LABEL org.opencontainers.image.description="ScanCode.io"
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ check-deploy:
86
86
87
87
clean :
88
88
@echo " -> Clean the Python env"
89
- rm -rf .venv/ .* _cache / * .egg-info/ build/ dist/
89
+ rm -rf .venv/ .* cache / * .egg-info/ build/ dist/
90
90
find . -type f -name ' *.py[co]' -delete -o -type d -name __pycache__ -delete
91
91
92
92
migrate :
Original file line number Diff line number Diff line change @@ -49,24 +49,24 @@ packages=find:
49
49
include_package_data = true
50
50
zip_safe = false
51
51
install_requires =
52
- importlib-metadata ==8.0 .0
53
- setuptools ==70.0 .0
52
+ importlib-metadata ==8.2 .0
53
+ setuptools ==72.1 .0
54
54
# Django related
55
- Django ==5.0.7
55
+ Django ==5.0.8
56
56
django-environ ==0.11.2
57
- django-crispy-forms ==2.2
57
+ django-crispy-forms ==2.3
58
58
crispy-bootstrap3 ==2024.1
59
- django-filter ==24.2
59
+ django-filter ==24.3
60
60
djangorestframework ==3.15.2
61
- django-taggit ==5 .0.1
61
+ django-taggit ==6 .0.0
62
62
# Database
63
63
psycopg[binary]==3.2.1
64
64
# wait_for_database Django management command
65
65
django-probes ==1.7.0
66
66
# Task queue
67
67
rq ==1.16.2
68
68
django-rq ==2.10.2
69
- redis ==5.0.7
69
+ redis ==5.0.8
70
70
# WSGI server
71
71
gunicorn ==22.0.0
72
72
# Docker
@@ -90,16 +90,16 @@ install_requires =
90
90
requests ==2.32.3
91
91
gitpython ==3.1.43
92
92
# Profiling
93
- pyinstrument ==4.6 .2
93
+ pyinstrument ==4.7 .2
94
94
# CycloneDX
95
95
cyclonedx-python-lib ==7.5.1
96
96
jsonschema ==4.23.0
97
97
# Font Awesome
98
- fontawesomefree ==6.5.1
98
+ fontawesomefree ==6.6.0
99
99
# MatchCode-toolkit
100
100
matchcode-toolkit ==5.1.0
101
101
# Univers
102
- univers ==30.11 .0
102
+ univers ==30.12 .0
103
103
# Markdown
104
104
markdown-it-py ==3.0.0
105
105
bleach ==6.1.0
@@ -109,7 +109,7 @@ install_requires =
109
109
[options.extras_require]
110
110
dev =
111
111
# Validation
112
- ruff ==0.5.4
112
+ ruff ==0.5.6
113
113
doc8 ==1.1.1
114
114
# Debug
115
115
django-debug-toolbar ==4.4.6
You can’t perform that action at this time.
0 commit comments