Skip to content

Commit

Permalink
Fix urllib3 issue (#15)
Browse files Browse the repository at this point in the history
* Update requirements.txt with urllib3 version constraint
* Update readme

Fixing #14
  • Loading branch information
solesensei authored Apr 23, 2024
1 parent 07fae9b commit 5e17371
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Notion Game List ![](https://img.shields.io/badge/version-0.1.0-blue) ![](https://app.travis-ci.com/solesensei/notion-game-list.svg?branch=master) [![discuss](https://img.shields.io/reddit/subreddit-subscribers/notion?label=Discuss%20r%2Fnotion-games-list&style=social)](https://www.reddit.com/r/Notion/comments/jiy1sb/notion_games_list/?utm_source=share&utm_medium=web2x&context=3)
# Notion Game List ![](https://img.shields.io/badge/version-0.1.1-blue) ![](https://app.travis-ci.com/solesensei/notion-game-list.svg?branch=master) [![discuss](https://img.shields.io/reddit/subreddit-subscribers/notion?label=Discuss%20r%2Fnotion-games-list&style=social)](https://www.reddit.com/r/Notion/comments/jiy1sb/notion_games_list/?utm_source=share&utm_medium=web2x&context=3)


All your games inside [Notion](https://www.notion.so/solesensei/Notion-Game-List-generated-0d0d39993755415bb8812563a2781d84).
Expand All @@ -10,6 +10,13 @@ All your games inside [Notion](https://www.notion.so/solesensei/Notion-Game-List
Python 3.6+

```bash
# Clone with submodules
git clone --recurse-submodules git@github.com:solesensei/notion-game-list.git

# Create virtual environment
python -m venv notion-game-list-venv && source notion-game-list-venv/bin/activate

# Install requirements
pip install -r requirements.txt -U
```

Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
requests>=2.3.0
notion>=0.0.25
termcolor>=1.1.0
colorama>=0.4.3
colorama>=0.4.3
urllib3<2.0.0

0 comments on commit 5e17371

Please sign in to comment.