bitvavo-api-upgraded 3.0.0__tar.gz → 4.0.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bitvavo-api-upgraded
3
- Version: 3.0.0
3
+ Version: 4.0.0
4
4
  Summary: A unit-tested fork of the Bitvavo API
5
5
  Author: Bitvavo BV (original code), NostraDavid
6
6
  Author-email: NostraDavid <55331731+NostraDavid@users.noreply.github.com>
@@ -23,6 +23,7 @@ Classifier: Programming Language :: Python
23
23
  Classifier: Typing :: Typed
24
24
  Requires-Dist: pydantic-settings==2.*,>=2.6
25
25
  Requires-Dist: requests==2.*,>=2.26
26
+ Requires-Dist: returns>=0.23.0
26
27
  Requires-Dist: structlog>=21.5,==25.*
27
28
  Requires-Dist: websocket-client==1.*,>=1.2
28
29
  Requires-Dist: cudf-cu12>=24.0.0 ; extra == 'cudf'
@@ -39,7 +40,7 @@ Requires-Dist: narwhals[pyspark-connect]>=2.0.0 ; extra == 'pyspark-connect'
39
40
  Requires-Dist: narwhals[sqlframe]>=2.0.0 ; extra == 'sqlframe'
40
41
  Maintainer: NostraDavid
41
42
  Maintainer-email: NostraDavid <55331731+NostraDavid@users.noreply.github.com>
42
- Requires-Python: >=3.9
43
+ Requires-Python: >=3.10
43
44
  Project-URL: changelog, https://github.com/Thaumatorium/bitvavo-api-upgraded/blob/master/CHANGELOG.md
44
45
  Project-URL: homepage, https://github.com/Thaumatorium/bitvavo-api-upgraded
45
46
  Project-URL: repository, https://github.com/Thaumatorium/bitvavo-api-upgraded
@@ -6,10 +6,10 @@ build-backend = "uv_build"
6
6
  # https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
7
7
  [project]
8
8
  name = "bitvavo-api-upgraded"
9
- version = "3.0.0"
9
+ version = "4.0.0"
10
10
  description = "A unit-tested fork of the Bitvavo API"
11
11
  readme = "README.md"
12
- requires-python = ">=3.9"
12
+ requires-python = ">=3.10"
13
13
  license = { text = "ISC License" }
14
14
  authors = [
15
15
  { name = "Bitvavo BV (original code)" },
@@ -39,6 +39,7 @@ classifiers = [
39
39
  dependencies = [
40
40
  "pydantic-settings==2.*, >=2.6", # to handle settings
41
41
  "requests==2.*, >=2.26", # to make http requests
42
+ "returns>=0.23.0", # for functional programming
42
43
  "structlog==25.*, >=21.5", # for logging
43
44
  "websocket-client==1.*, >=1.2", # something something websocket
44
45
  ]
@@ -104,7 +105,7 @@ dev-dependencies = [
104
105
  ]
105
106
 
106
107
  [tool.bumpversion]
107
- current_version = "3.0.0"
108
+ current_version = "4.0.0"
108
109
  parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
109
110
  serialize = ["{major}.{minor}.{patch}"]
110
111
  search = "{current_version}"