File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -18,15 +18,15 @@ jobs:
1818 uses : actions/setup-python@v4
1919 with :
2020 python-version : " 3.9"
21- - uses : fedora-python/tox-github-action@v38 .0
21+ - uses : fedora-python/tox-github-action@v39 .0
2222 with :
2323 tox_env : flake8
2424 dnf_install : krb5-devel
25- - uses : fedora-python/tox-github-action@v38 .0
25+ - uses : fedora-python/tox-github-action@v39 .0
2626 with :
2727 tox_env : safety
2828 dnf_install : krb5-devel
29- - uses : fedora-python/tox-github-action@v38 .0
29+ - uses : fedora-python/tox-github-action@v39 .0
3030 with :
3131 tox_env : bandit
3232 dnf_install : krb5-devel
4040 uses : actions/setup-python@v4
4141 with :
4242 python-version : " 3.9"
43- - uses : fedora-python/tox-github-action@v38 .0
43+ - uses : fedora-python/tox-github-action@v39 .0
4444 with :
4545 tox_env : py39
4646 dnf_install : krb5-devel
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ COPY . .
2121RUN docker/install-dependencies.sh $rcm_tools_repo_file
2222
2323RUN sed -i '/^koji==/,/--hash=\S *$/d' requirements.txt
24+ RUN sed -i '/^koji==.*$/d' requirements-no-hashes.txt
2425RUN python3 -m pip install --no-deps .
2526
2627# Mount to a directory holding the MTS config file
Original file line number Diff line number Diff line change 77 long_description = f .read ()
88
99
10- with open ('requirements.txt' , 'r' ) as f :
10+ with open ('requirements-no-hashes .txt' , 'r' ) as f :
1111 install_requires = [
12- line .rstrip () for line in f if not line .startswith ('#' )
12+ line .strip () for line in f if not line . lstrip () .startswith ('#' )
1313 ]
1414
1515
You can’t perform that action at this time.
0 commit comments