Skip to content

Commit

Permalink
Merge pull request #489 from codders/bugfix/werkzeug-pin
Browse files Browse the repository at this point in the history
Pin Werkzeug because of werkzeug3.0 api changes that are not
  • Loading branch information
codders authored Oct 3, 2023
2 parents 8805046 + 686a598 commit 1f6c6ba
Show file tree
Hide file tree
Showing 3 changed files with 352 additions and 478 deletions.
4 changes: 2 additions & 2 deletions .github/actions/pylint-runner/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -u
pipenv requirements > requirements.txt
pip install -r requirements.txt

pylint_runner
pylint flathunter
pylint_runner_exit_code=$?

if [ $(( $pylint_runner_exit_code & 32 )) != 0 ] || # usage error
Expand All @@ -22,4 +22,4 @@ fi

echo "Ran successfully (exit code was $pylint_runner_exit_code)"
echo "(See https://pylint.pycqa.org/en/latest/user_guide/usage/run.html#exit-codes)"
exit 0
exit 0
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ coverage = "*"
requests-mock = "*"
Flask = "*"
Flask-API = "*"
werkzeug = "<3"
firebase-admin = "*"
mock-firestore = "*"
pytest-mock = "*"
Expand All @@ -22,7 +23,6 @@ jsonpath-ng = "*"
backoff = "*"
pytz = "*"
beautifulsoup4 = "*"
pylint-runner = "*"
webdriver-manager = "*"
apprise = "*"
python-dotenv = "*"
Expand Down
Loading

0 comments on commit 1f6c6ba

Please sign in to comment.