Skip to content

Commit 7491cd6

Browse files
committed
Fix dependency issue of requests package
1 parent 5fed4bc commit 7491cd6

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
python-version: '3.x'
1515
- name: Install pypa/build
1616
run: python -m pip install build --user
17+
- name: Install requirements
18+
run: python -m pip install requests
1719
- name: Build
1820
run: python -m build --sdist --wheel --outdir dist/
1921
- name: Test

subscrypt/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from urllib.parse import urljoin
22

3-
import requests as requests
3+
import requests
44

55

66
class Subscrypt:

0 commit comments

Comments
 (0)