volue-insight-timeseries 1.4.1rc0__tar.gz → 2.0.0rc1__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 volue-insight-timeseries might be problematic. Click here for more details.

Files changed (20) hide show
  1. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/PKG-INFO +2 -2
  2. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/README.md +5 -6
  3. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/setup.py +1 -1
  4. volue_insight_timeseries-2.0.0rc1/volue_insight_timeseries/VERSION +1 -0
  5. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/volue_insight_timeseries/events.py +1 -1
  6. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/volue_insight_timeseries.egg-info/PKG-INFO +2 -2
  7. volue_insight_timeseries-2.0.0rc1/volue_insight_timeseries.egg-info/requires.txt +8 -0
  8. volue_insight_timeseries-1.4.1rc0/volue_insight_timeseries/VERSION +0 -1
  9. volue_insight_timeseries-1.4.1rc0/volue_insight_timeseries.egg-info/requires.txt +0 -3
  10. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/LICENSE +0 -0
  11. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/MANIFEST.in +0 -0
  12. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/setup.cfg +0 -0
  13. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/volue_insight_timeseries/__init__.py +0 -0
  14. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/volue_insight_timeseries/auth.py +0 -0
  15. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/volue_insight_timeseries/curves.py +0 -0
  16. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/volue_insight_timeseries/session.py +0 -0
  17. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/volue_insight_timeseries/util.py +0 -0
  18. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/volue_insight_timeseries.egg-info/SOURCES.txt +0 -0
  19. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/volue_insight_timeseries.egg-info/dependency_links.txt +0 -0
  20. {volue_insight_timeseries-1.4.1rc0 → volue_insight_timeseries-2.0.0rc1}/volue_insight_timeseries.egg-info/top_level.txt +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: volue_insight_timeseries
3
- Version: 1.4.1rc0
3
+ Version: 2.0.0rc1
4
4
  Summary: Volue Insight API python library
5
5
  Home-page: https://www.volueinsight.com
6
6
  Author: Volue Insight
7
7
  Author-email: support.insight@volue.com
8
- Requires-Python: >=3.9, <3.13a0
8
+ Requires-Python: >=3.10, <=3.13
9
9
  License-File: LICENSE
10
10
 
11
11
  This library is meant as a simple toolkit for working with data from https://api.volueinsight.com/ (or equivalent services). Note that access is based on some sort of login credentials, this library is not all that useful unless you have a valid Volue Insight account.
@@ -6,8 +6,7 @@ https://api.volueinsight.com/ (or equivalent services). Note that access
6
6
  is based on having a valid Volue Insight account. Please contact
7
7
  sales.insight@volue.com in order to get a trial account.
8
8
 
9
- The library is tested against Python 3.9, 3.10, 3.11 and 3.12 - we recommend using
10
- the latest Python version.
9
+ The library is tested against Python 3.10, 3.11, 3.12 and 3.13. Please only use either of these python versions.
11
10
 
12
11
 
13
12
  ## Documentation
@@ -54,8 +53,8 @@ the event of a severe bug that we will do any changes to it.
54
53
  These are the steps you will have to do in order to successfully
55
54
  make the switch.
56
55
 
57
- * Use Python 3.9, 3.10, 3.11 or 3.12
58
- * Use Pandas 1.5.0 or newer
56
+ * Use Python 3.10, 3.11, 3.12 or 3.13
57
+ * Use Pandas 1.5.0 or newer for python 3.10-3.12. Use Pandas 2.2.3 or newer for python 3.13 or newer
59
58
  * Use [zoneinfo](https://docs.python.org/3/library/zoneinfo.html), not pytz for handling time zone information
60
59
 
61
60
  ### Example of migrating an existing script
@@ -64,7 +63,7 @@ highlight things that are changing, not a recommended way to write production
64
63
  code.
65
64
 
66
65
  ```python
67
- # python 3.9.8
66
+ # python 3.10.18
68
67
  # pip install wapi-python==0.7.15
69
68
  # pip install python-dotenv==1.0.1
70
69
  #
@@ -98,7 +97,7 @@ if results:
98
97
  The migrated script is below
99
98
 
100
99
  ```python
101
- # python 3.9.8
100
+ # python 3.10.18
102
101
  # pip install volue-insight-timeseries==1.2.0
103
102
  # pip install python-dotenv==1.0.1
104
103
  #
@@ -27,7 +27,7 @@ with open(os.path.join(here, 'volue_insight_timeseries/VERSION')) as fv:
27
27
 
28
28
  setup(
29
29
  name='volue_insight_timeseries',
30
- python_requires='>=3.9, <3.13a0',
30
+ python_requires='>=3.10, <=3.13',
31
31
  packages=find_packages(),
32
32
  install_requires=extract_requirements('requirements.txt'),
33
33
  tests_require=[
@@ -32,7 +32,7 @@ class EventListener:
32
32
  self.queue = queue.Queue()
33
33
  self.do_shutdown = False
34
34
  self.worker = threading.Thread(target=self.fetch_events)
35
- self.worker.setDaemon(True)
35
+ self.worker.daemon = True
36
36
  self.worker.start()
37
37
 
38
38
  def get(self):
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: volue-insight-timeseries
3
- Version: 1.4.1rc0
3
+ Version: 2.0.0rc1
4
4
  Summary: Volue Insight API python library
5
5
  Home-page: https://www.volueinsight.com
6
6
  Author: Volue Insight
7
7
  Author-email: support.insight@volue.com
8
- Requires-Python: >=3.9, <3.13a0
8
+ Requires-Python: >=3.10, <=3.13
9
9
  License-File: LICENSE
10
10
 
11
11
  This library is meant as a simple toolkit for working with data from https://api.volueinsight.com/ (or equivalent services). Note that access is based on some sort of login credentials, this library is not all that useful unless you have a valid Volue Insight account.
@@ -0,0 +1,8 @@
1
+ requests>=2.18
2
+ sseclient-py>=1.7
3
+
4
+ [:python_version >= "3.10" and python_version < "3.13"]
5
+ pandas>=1.5.0
6
+
7
+ [:python_version >= "3.13"]
8
+ pandas>=2.3.2
@@ -1,3 +0,0 @@
1
- requests>=2.18
2
- sseclient-py>=1.7
3
- pandas>=1.5.0