Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
12 changes: 5 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,10 @@ htmlcov/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
venv/
.venv/
.venv*/
.python-version
.pytest_cache

Expand All @@ -59,11 +57,11 @@ venv/
# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Ipython Notebook
.ipynb_checkpoints

.idea/
.vscode/
.vscode/

# Serena mcp
.serena
Comment thread
dtoxvanilla1991 marked this conversation as resolved.
Outdated
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
requests~=2.32.0
requests~=2.32.5; python_version < "3.10"
requests~=2.33.0; python_version >= "3.10"
# Core dependencies
django>=4.2.0,<5.0.0
python-dotenv>=1.0.0
Expand Down