Skip to content

Commit

Permalink
[requests] update to v2.31.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nephros committed Apr 3, 2024
1 parent ec12ce6 commit 907d657
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requests
Submodule requests updated 89 files
+1 −1 .coveragerc
+5 −0 .git-blame-ignore-revs
+5 −2 .github/CODE_OF_CONDUCT.md
+2 −5 .github/CONTRIBUTING.md
+1 −1 .github/FUNDING.yml
+1 −1 .github/ISSUE_TEMPLATE.md
+9 −7 .github/ISSUE_TEMPLATE/Bug_report.md
+8 −8 .github/SECURITY.md
+73 −0 .github/workflows/codeql-analysis.yml
+20 −0 .github/workflows/lint.yml
+19 −0 .github/workflows/lock-issues.yml
+34 −0 .github/workflows/run-tests.yml
+6 −0 .gitignore
+28 −0 .pre-commit-config.yaml
+0 −26 .travis.yml
+6 −3 AUTHORS.rst
+247 −7 HISTORY.md
+172 −10 LICENSE
+1 −1 MANIFEST.in
+8 −9 Makefile
+2 −0 NOTICE
+0 −25 Pipfile
+0 −739 Pipfile.lock
+45 −93 README.md
+0 −229 _appveyor/install.ps1
+0 −57 appveyor.yml
+0 −116 docs/_static/konami.js
+ docs/_static/requests-logo-small.jpg
+ docs/_static/requests-sidebar.jpg
+ docs/_static/requests-sidebar.png
+0 −30 docs/_templates/hacks.html
+10 −52 docs/_templates/sidebarintro.html
+14 −49 docs/_templates/sidebarlogo.html
+3 −2 docs/api.rst
+11 −15 docs/community/faq.rst
+0 −2 docs/community/out-there.rst
+1 −3 docs/community/recommended.rst
+0 −2 docs/community/release-process.rst
+7 −30 docs/community/support.rst
+0 −13 docs/community/updates.rst
+7 −7 docs/community/vulnerabilities.rst
+1 −1 docs/conf.py
+0 −2 docs/dev/authors.rst
+20 −69 docs/dev/contributing.rst
+0 −47 docs/dev/philosophy.rst
+0 −64 docs/dev/todo.rst
+14 −10 docs/index.rst
+3 −0 docs/requirements.txt
+98 −31 docs/user/advanced.rst
+3 −4 docs/user/authentication.rst
+7 −14 docs/user/install.rst
+0 −47 docs/user/intro.rst
+20 −14 docs/user/quickstart.rst
+13 −0 pyproject.toml
+0 −3 pytest.ini
+99 −50 requests/__init__.py
+10 −10 requests/__version__.py
+17 −9 requests/_internal_utils.py
+135 −130 requests/adapters.py
+11 −15 requests/api.py
+83 −73 requests/auth.py
+1 −2 requests/certs.py
+51 −44 requests/compat.py
+82 −70 requests/cookies.py
+30 −15 requests/exceptions.py
+62 −47 requests/help.py
+3 −4 requests/hooks.py
+230 −150 requests/models.py
+17 −3 requests/packages.py
+192 −126 requests/sessions.py
+87 −82 requests/status_codes.py
+3 −9 requests/structures.py
+291 −179 requests/utils.py
+13 −0 requirements-dev.txt
+15 −3 setup.cfg
+78 −59 setup.py
+9 −8 tests/__init__.py
+12 −10 tests/compat.py
+37 −3 tests/conftest.py
+6 −12 tests/test_help.py
+7 −8 tests/test_hooks.py
+154 −35 tests/test_lowlevel.py
+1,178 −895 tests/test_requests.py
+20 −18 tests/test_structures.py
+22 −23 tests/test_testserver.py
+517 −375 tests/test_utils.py
+25 −19 tests/testserver/server.py
+0 −2 tests/utils.py
+14 −3 tox.ini
2 changes: 1 addition & 1 deletion rpm/python3-requests.spec
@@ -1,6 +1,6 @@
Name: python3-requests
Summary: Requests is an elegant and simple HTTP library for Python
Version: 2.23.0
Version: 2.31.0
Release: 1
License: ASL 2.0
URL: https://github.com/sailfishos/python3-requests
Expand Down

0 comments on commit 907d657

Please sign in to comment.