Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade dependencies to support ubuntu 24.04 #14

Merged
merged 5 commits into from
Aug 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI - Test Install Requirements

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test-install:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ubuntu-22.04, ubuntu-20.04, macos-latest, windows-latest]
python-version: ["3.11", "3.10", "3.9"]

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ as seen. Optionally downloads comics to ./comics/
## Dependencies ##

* python3
* MacOS or Linux (not tested on Windows)
* see contents of requirements.txt
* MacOS or Ubuntu (tested on 20.04-24.04)

## Limitations ##

Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
certifi==2023.11.17
certifi==2024.7.4
charset-normalizer==3.3.2
idna==3.6
python-dotenv==1.0.0
idna==3.7
python-dotenv==1.0.1
python-http-client==3.3.7
requests==2.31.0
sendgrid==6.10.0
requests==2.32.3
sendgrid==6.11.0
starkbank-ecdsa==2.2.0
urllib3==2.1.0
urllib3==2.2.2
Loading