Skip to content

Commit

Permalink
constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinvanrijn committed Jan 12, 2025
1 parent 2e7d46f commit addf321
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,9 @@ jobs:
- name: Build demjson
shell: bash
run: |
python -m pip install setuptools==57.5.0
python -m pip install git+https://github.com/EIGHTFINITE/demjson.git@master
echo 'setuptools==57.5.0' > constraints.txt
python -m pip install -c constraints.txt git+https://github.com/EIGHTFINITE/demjson.git@master
rm constraints.txt
- uses: actions/[email protected]
with:
ref: artifacts
Expand Down Expand Up @@ -350,8 +351,9 @@ jobs:
- name: Build demjson
shell: bash
run: |
python -m pip install setuptools==57.5.0
python -m pip install git+https://github.com/EIGHTFINITE/demjson.git@master
echo 'setuptools==57.5.0' > constraints.txt
python -m pip install -c constraints.txt git+https://github.com/EIGHTFINITE/demjson.git@master
rm constraints.txt
- uses: actions/[email protected]
with:
ref: latest
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/jsonlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ jobs:
- name: Build demjson
shell: bash
run: |
python -m pip install setuptools==57.5.0
python -m pip install git+https://github.com/EIGHTFINITE/demjson.git@master
echo 'setuptools==57.5.0' > constraints.txt
python -m pip install -c constraints.txt git+https://github.com/EIGHTFINITE/demjson.git@master
rm constraints.txt
- uses: actions/[email protected]
with:
path: DownloadItYourself
Expand Down

0 comments on commit addf321

Please sign in to comment.