httpx-qs 0.1.0__tar.gz → 0.1.1__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 httpx-qs might be problematic. Click here for more details.

@@ -0,0 +1,7 @@
1
+ ## 0.1.1
2
+
3
+ * [CHORE] limit httpx to `>=0.28.1, <1.0.0`
4
+
5
+ ## 0.1.0
6
+
7
+ * [CHORE] Initial release.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: httpx-qs
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: HTTPX transport leveraging qs-codec for advanced query string encoding and decoding.
5
5
  Project-URL: Homepage, https://techouse.github.io/httpx_qs/
6
6
  Project-URL: Repository, https://github.com/techouse/httpx_qs.git
@@ -30,7 +30,7 @@ Classifier: Topic :: Internet :: WWW/HTTP
30
30
  Classifier: Topic :: Software Development :: Libraries
31
31
  Classifier: Typing :: Typed
32
32
  Requires-Python: >=3.9
33
- Requires-Dist: httpx>=0.28.1
33
+ Requires-Dist: httpx<1.0.0,>=0.28.1
34
34
  Requires-Dist: qs-codec>=1.2.3
35
35
  Provides-Extra: dev
36
36
  Requires-Dist: black; extra == 'dev'
@@ -88,8 +88,8 @@ Smart, policy-driven query string merging & encoding for `httpx <https://www.pyt
88
88
  :target: https://github.com/sponsors/techouse
89
89
  :alt: GitHub Sponsors
90
90
 
91
- .. image:: https://img.shields.io/github/stars/techouse/qs_codec
92
- :target: https://github.com/techouse/qs_codec/stargazers
91
+ .. image:: https://img.shields.io/github/stars/techouse/httpx_qs
92
+ :target: https://github.com/techouse/httpx_qs/stargazers
93
93
  :alt: GitHub Repo stars
94
94
 
95
95
  .. image:: https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg
@@ -44,8 +44,8 @@ Smart, policy-driven query string merging & encoding for `httpx <https://www.pyt
44
44
  :target: https://github.com/sponsors/techouse
45
45
  :alt: GitHub Sponsors
46
46
 
47
- .. image:: https://img.shields.io/github/stars/techouse/qs_codec
48
- :target: https://github.com/techouse/qs_codec/stargazers
47
+ .. image:: https://img.shields.io/github/stars/techouse/httpx_qs
48
+ :target: https://github.com/techouse/httpx_qs/stargazers
49
49
  :alt: GitHub Repo stars
50
50
 
51
51
  .. image:: https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg
@@ -37,7 +37,7 @@ classifiers = [
37
37
  "Typing :: Typed",
38
38
  ]
39
39
  dependencies = [
40
- "httpx>=0.28.1",
40
+ "httpx>=0.28.1, <1.0.0",
41
41
  "qs-codec>=1.2.3",
42
42
  ]
43
43
  dynamic = ["version"]
@@ -1,4 +1,4 @@
1
- httpx>=0.28.1
1
+ httpx>=0.28.1, <1.0.0
2
2
  qs-codec>=1.2.3
3
3
  pytest>=8.3.5
4
4
  pytest-cov>=6.0.0
@@ -1,6 +1,6 @@
1
1
  """httpx-qs: A library for smart query string handling with httpx."""
2
2
 
3
- __version__ = "0.1.0"
3
+ __version__ = "0.1.1"
4
4
 
5
5
  from .enums.merge_policy import MergePolicy
6
6
  from .transporters import smart_query_strings
@@ -1,3 +0,0 @@
1
- ## 0.1.0
2
-
3
- * [CHORE] Initial release.
File without changes
File without changes
File without changes
File without changes