Skip to content

Commit

Permalink
Merge pull request codalab#3372 from codalab/fix_anyjson_github_actio…
Browse files Browse the repository at this point in the history
…n_tests

Fix installation of deprecated anyjson package
  • Loading branch information
Didayolo authored May 22, 2023
2 parents 2505c83 + cfba6c5 commit d2db0da
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/run-pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,12 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get install libxml2-dev libxslt-dev python-dev-is-python3
sudo apt-get update --allow-releaseinfo-change && sudo apt-get install libmemcached-dev --fix-missing
sudo apt-get update --allow-releaseinfo-change && sudo apt-get install libmemcached-dev --fix-missing
python -m pip install --upgrade pip
# Patch for anyjson
pip install "setuptools~=57.5.0" wheel
pip install anyjson
# End Patch for anyjson
pip install flake8 pytest pytest-cov pytest-dependency pytest-django
pip install -r ./codalab/requirements/requirements.txt
- name: Lint with flake8
Expand Down

0 comments on commit d2db0da

Please sign in to comment.