Skip to content

Commit 37fd1c2

Browse files
authored
Thirdparty upgrade and .dockerignore updates (#1352)
Signed-off-by: tdruez <tdruez@nexb.com>
1 parent acb770a commit 37fd1c2

File tree

4 files changed

+18
-13
lines changed

4 files changed

+18
-13
lines changed

.dockerignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
**/.*
12
**/.git
23
**/.gitignore
34
**/.github
@@ -9,6 +10,7 @@
910
**/.DS_Store
1011
**/.aof
1112
**/venv
13+
**/.venv
1214
**/env
1315
**/bin
1416
**/build
@@ -18,11 +20,14 @@
1820
**/lib
1921
**/var
2022
**/*.egg-info
23+
**/.*cache
2124
.dockerignore
2225
.readthedocs.yaml
2326
docker.env
2427
.env
2528
CHANGELOG.rst
29+
MANIFEST.in
30+
Makefile
2631
Dockerfile
2732
README.rst
2833
docker-compose.yml

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# ScanCode.io is a free software code scanning tool from nexB Inc. and others.
2121
# Visit https://github.com/nexB/scancode.io for support and download.
2222

23-
FROM --platform=linux/amd64 python:3.12-slim
23+
FROM python:3.12-slim
2424

2525
LABEL org.opencontainers.image.source="https://github.com/nexB/scancode.io"
2626
LABEL org.opencontainers.image.description="ScanCode.io"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ check-deploy:
8686

8787
clean:
8888
@echo "-> Clean the Python env"
89-
rm -rf .venv/ .*_cache/ *.egg-info/ build/ dist/
89+
rm -rf .venv/ .*cache/ *.egg-info/ build/ dist/
9090
find . -type f -name '*.py[co]' -delete -o -type d -name __pycache__ -delete
9191

9292
migrate:

setup.cfg

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -49,24 +49,24 @@ packages=find:
4949
include_package_data = true
5050
zip_safe = false
5151
install_requires =
52-
importlib-metadata==8.0.0
53-
setuptools==70.0.0
52+
importlib-metadata==8.2.0
53+
setuptools==72.1.0
5454
# Django related
55-
Django==5.0.7
55+
Django==5.0.8
5656
django-environ==0.11.2
57-
django-crispy-forms==2.2
57+
django-crispy-forms==2.3
5858
crispy-bootstrap3==2024.1
59-
django-filter==24.2
59+
django-filter==24.3
6060
djangorestframework==3.15.2
61-
django-taggit==5.0.1
61+
django-taggit==6.0.0
6262
# Database
6363
psycopg[binary]==3.2.1
6464
# wait_for_database Django management command
6565
django-probes==1.7.0
6666
# Task queue
6767
rq==1.16.2
6868
django-rq==2.10.2
69-
redis==5.0.7
69+
redis==5.0.8
7070
# WSGI server
7171
gunicorn==22.0.0
7272
# Docker
@@ -90,16 +90,16 @@ install_requires =
9090
requests==2.32.3
9191
gitpython==3.1.43
9292
# Profiling
93-
pyinstrument==4.6.2
93+
pyinstrument==4.7.2
9494
# CycloneDX
9595
cyclonedx-python-lib==7.5.1
9696
jsonschema==4.23.0
9797
# Font Awesome
98-
fontawesomefree==6.5.1
98+
fontawesomefree==6.6.0
9999
# MatchCode-toolkit
100100
matchcode-toolkit==5.1.0
101101
# Univers
102-
univers==30.11.0
102+
univers==30.12.0
103103
# Markdown
104104
markdown-it-py==3.0.0
105105
bleach==6.1.0
@@ -109,7 +109,7 @@ install_requires =
109109
[options.extras_require]
110110
dev =
111111
# Validation
112-
ruff==0.5.4
112+
ruff==0.5.6
113113
doc8==1.1.1
114114
# Debug
115115
django-debug-toolbar==4.4.6

0 commit comments

Comments
 (0)