File tree 5 files changed +10
-10
lines changed
5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ RUN pip3 install --upgrade pip && pip3 --disable-pip-version-check --no-cache-di
34
34
# [Optional] Uncomment this line to install global node packages.
35
35
# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g <your-package-here>" 2>&1
36
36
37
- RUN apt-get update && apt-get install -y ruby && gem install license_finder -v 7.1.0 && gembin=`(gem env | sed -n "s/.*EXECUTABLE DIRECTORY: \( .*\) /\1 /p" )` && export PATH=$gembin:$PATH
37
+ RUN apt-get update && apt-get install -y ruby && gem install license_finder && gembin=`(gem env | sed -n "s/.*EXECUTABLE DIRECTORY: \( .*\) /\1 /p" )` && export PATH=$gembin:$PATH
38
38
39
39
RUN curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y
40
40
Original file line number Diff line number Diff line change 59
59
pip install pytest pytest-cov
60
60
su vscode -c "umask 0002 && . /usr/local/share/nvm/nvm.sh && nvm install lts/* 2>&1"
61
61
apt-get update && apt-get install -y ruby
62
- gem install license_finder -v 7.1.0 && gembin=`(gem env | sed -n "s/.*EXECUTABLE DIRECTORY: \(.*\)/\1/p")`
62
+ gem install license_finder && gembin=`(gem env | sed -n "s/.*EXECUTABLE DIRECTORY: \(.*\)/\1/p")`
63
63
export PATH=$gembin:$PATH
64
64
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y
65
65
Original file line number Diff line number Diff line change 13
13
# SPDX-License-Identifier: Apache-2.0
14
14
15
15
16
- FROM python:3.10.3 -slim
16
+ FROM python:3.10.14 -slim
17
17
18
18
ARG DEBIAN_FRONTEND=noninteractive
19
19
@@ -23,7 +23,7 @@ COPY ./src/ /
23
23
RUN apt update \
24
24
&& apt install -y git \
25
25
&& apt install -y ruby \
26
- && gem install license_finder -v 7.1.0 \
26
+ && gem install license_finder \
27
27
&& pip3 install -r /requirements.txt
28
28
29
29
# Install conan to handle c++ dependencies
Original file line number Diff line number Diff line change 3
3
## Python
4
4
| Dependency | Version | License |
5
5
| :-----------| :-------:| --------:|
6
- | certifi| 2024.2 .2| Mozilla Public License 2.0|
6
+ | certifi| 2024.6 .2| Mozilla Public License 2.0|
7
7
| charset-normalizer| 3.3.2| MIT|
8
8
| gitdb| 4.0.11| BSD|
9
9
| GitPython| 3.1.43| New BSD|
10
10
| idna| 3.7| BSD|
11
11
| PyYAML| 6.0.1| MIT|
12
- | requests| 2.31.0 | Apache 2.0|
12
+ | requests| 2.32.3 | Apache 2.0|
13
13
| smmap| 5.0.1| BSD|
14
14
| str2bool| 1.1| BSD|
15
15
| types-PyYAML| 6.0.12.20240311| Apache 2.0|
16
- | types-requests| 2.31 .0.20240406 | Apache 2.0|
17
- | types-setuptools| 69.5 .0.20240513 | Apache 2.0|
18
- | urllib3| 2.2.1 | MIT|
16
+ | types-requests| 2.32 .0.20240622 | Apache 2.0|
17
+ | types-setuptools| 70.1 .0.20240625 | Apache 2.0|
18
+ | urllib3| 2.2.2 | MIT|
19
19
## Workflows
20
20
| Dependency | Version | License |
21
21
| :-----------| :-------:| --------:|
Original file line number Diff line number Diff line change 22
22
23
23
setuptools .setup (
24
24
name = "licensevalidator" ,
25
- version = "1.2.4 " ,
25
+ version = "1.2.5 " ,
26
26
description = "A validator for dependency licenses" ,
27
27
long_description = long_description ,
28
28
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments