httpr 0.1.12__tar.gz → 0.1.13__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of httpr might be problematic. Click here for more details.

Files changed (38) hide show
  1. {httpr-0.1.12 → httpr-0.1.13}/PKG-INFO +1 -1
  2. httpr-0.1.13/benchmark.jpg +0 -0
  3. {httpr-0.1.12 → httpr-0.1.13}/httpr/__init__.py +1 -1
  4. {httpr-0.1.12 → httpr-0.1.13}/pyproject.toml +1 -1
  5. httpr-0.1.12/benchmark.jpg +0 -0
  6. {httpr-0.1.12 → httpr-0.1.13}/.github/workflows/CI.yml +4 -4
  7. {httpr-0.1.12 → httpr-0.1.13}/.github/workflows/mkdocs.yml +0 -0
  8. {httpr-0.1.12 → httpr-0.1.13}/.github/workflows/set_version.py +0 -0
  9. {httpr-0.1.12 → httpr-0.1.13}/.gitignore +0 -0
  10. {httpr-0.1.12 → httpr-0.1.13}/.pre-commit-config.yaml +0 -0
  11. {httpr-0.1.12 → httpr-0.1.13}/Cargo.lock +0 -0
  12. {httpr-0.1.12 → httpr-0.1.13}/Cargo.toml +0 -0
  13. {httpr-0.1.12 → httpr-0.1.13}/LICENSE +0 -0
  14. {httpr-0.1.12 → httpr-0.1.13}/README.md +0 -0
  15. {httpr-0.1.12 → httpr-0.1.13}/benchmark/README.md +0 -0
  16. {httpr-0.1.12 → httpr-0.1.13}/benchmark/benchmark.py +0 -0
  17. {httpr-0.1.12 → httpr-0.1.13}/benchmark/generate_image.py +0 -0
  18. {httpr-0.1.12 → httpr-0.1.13}/benchmark/pyproject.toml +0 -0
  19. {httpr-0.1.12 → httpr-0.1.13}/benchmark/requirements.txt +0 -0
  20. {httpr-0.1.12 → httpr-0.1.13}/benchmark/server.py +0 -0
  21. {httpr-0.1.12 → httpr-0.1.13}/docs/index.md +0 -0
  22. {httpr-0.1.12 → httpr-0.1.13}/docs/writings/index.md +0 -0
  23. {httpr-0.1.12 → httpr-0.1.13}/docs/writings/posts/2025-02-24-python-http-clients-suck.md +0 -0
  24. {httpr-0.1.12 → httpr-0.1.13}/httpr/httpr.pyi +0 -0
  25. {httpr-0.1.12 → httpr-0.1.13}/httpr/py.typed +0 -0
  26. {httpr-0.1.12 → httpr-0.1.13}/httpr.code-workspace +0 -0
  27. {httpr-0.1.12 → httpr-0.1.13}/mkdocs.yml +0 -0
  28. {httpr-0.1.12 → httpr-0.1.13}/scratch.ipynb +0 -0
  29. {httpr-0.1.12 → httpr-0.1.13}/src/lib.rs +0 -0
  30. {httpr-0.1.12 → httpr-0.1.13}/src/response.rs +0 -0
  31. {httpr-0.1.12 → httpr-0.1.13}/src/traits.rs +0 -0
  32. {httpr-0.1.12 → httpr-0.1.13}/src/utils.rs +0 -0
  33. {httpr-0.1.12 → httpr-0.1.13}/tests/httpx_conns.py +0 -0
  34. {httpr-0.1.12 → httpr-0.1.13}/tests/test_asyncclient.py +0 -0
  35. {httpr-0.1.12 → httpr-0.1.13}/tests/test_client.py +0 -0
  36. {httpr-0.1.12 → httpr-0.1.13}/tests/test_defs.py +0 -0
  37. {httpr-0.1.12 → httpr-0.1.13}/tests/test_ssl.py +0 -0
  38. {httpr-0.1.12 → httpr-0.1.13}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: httpr
3
- Version: 0.1.12
3
+ Version: 0.1.13
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: 3
6
6
  Classifier: Programming Language :: Python :: 3 :: Only
Binary file
@@ -46,7 +46,7 @@ class Client(RClient):
46
46
  ca_cert_file: str | None = None,
47
47
  client_pem: str | None = None,
48
48
  https_only: bool | None = False,
49
- # http2_only: bool | None = False,
49
+ http2_only: bool | None = False,
50
50
  ):
51
51
  """
52
52
  Args:
@@ -10,7 +10,7 @@ keywords = [ "python", "request",]
10
10
  classifiers = [ "Programming Language :: Rust", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules",]
11
11
  dynamic = [ "version",]
12
12
  dependencies = []
13
- version = "0.1.12"
13
+ version = "0.1.13"
14
14
  [[project.authors]]
15
15
  name = "thomasht86"
16
16
 
Binary file
@@ -344,6 +344,10 @@ jobs:
344
344
  runs-on: ubuntu-latest
345
345
  needs: [linux]
346
346
  steps:
347
+ - name: Checkout main branch
348
+ if: ${{ startsWith(github.ref, 'refs/tags/') }}
349
+ run: |
350
+ git checkout main
347
351
  - uses: actions/checkout@v4
348
352
  with:
349
353
  fetch-depth: 0
@@ -367,10 +371,6 @@ jobs:
367
371
  run: python benchmark/benchmark.py
368
372
  - name: Generate image
369
373
  run: python benchmark/generate_image.py
370
- - name: Checkout main branch
371
- if: ${{ startsWith(github.ref, 'refs/tags/') }}
372
- run: |
373
- git checkout main
374
374
  - name: Commit generated image if changed
375
375
  uses: EndBug/add-and-commit@v9
376
376
  with:
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes