Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
There was a change in the newest Chromedriver download URL that is fixed
by the latest version of SeleniumBase, so this update is necessary.

Also, I removed certifi since SeleniumBase already requires a specific
version internally and there isn't a need to deal with conflicts between
the requirements.
  • Loading branch information
jdholtz committed Feb 16, 2024
1 parent 5a84571 commit 9ede539
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: flake8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 23.11.0
rev: 24.2.0
hooks:
- id: black
- repo: https://github.com/codespell-project/codespell
Expand All @@ -11,10 +11,10 @@ repos:
- tomli
exclude: utils/airport_timezones.json
- repo: https://github.com/pycqa/flake8
rev: 6.1.0
rev: 7.0.0
hooks:
- id: flake8
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ version is necessary for the script to adapt to these changes (and expect more p
- Fix an index error during fare checking that resulted in either a crash or monitoring of the wrong flight
([#224](https://github.com/jdholtz/auto-southwest-check-in/issues/224))

### Upgrading
- Upgrade the dependencies to the latest versions by running `pip install -r requirements.txt`


## 7.2 (2024-02-07)
**Note**: Due to [#201](https://github.com/jdholtz/auto-southwest-check-in/issues/201), the Docker image is currently
Expand Down
7 changes: 3 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
apprise==1.7.1
certifi==2023.11.17
pytz==2023.3.post1 # Remove when this script only supports Python 3.9+
apprise==1.7.2
pytz==2024.1 # Remove when this script only supports Python 3.9+
requests==2.31.0
seleniumbase==4.22.5
seleniumbase==4.23.4

0 comments on commit 9ede539

Please sign in to comment.