This repository was archived by the owner on May 5, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +22
-10
lines changed Expand file tree Collapse file tree 5 files changed +22
-10
lines changed Original file line number Diff line number Diff line change 1
1
# History
2
2
3
+ ## 2.0.0-alpha5 (2020-02-20)
4
+
5
+ - Fixed ` Credentials ` storage adapter import
6
+
7
+ ## 2.0.0-alpha4 (2020-02-20)
8
+
9
+ - Updated MANIFEST
10
+
3
11
## 2.0.0-alpha3 (2020-02-20)
4
12
5
- - Rename ` pancloud ` package directory to ` pan_cortex_data_lake `
6
- - Publish to PyPI under new name, ` pan-cortex-data-lake `
7
- - Move from RST to MD format for docs files
8
- - Drop support for ` pipenv `
9
- - Update setup.cfg and setup.py
10
- - Update tests and test config files
13
+ - Renamed ` pancloud ` package directory to ` pan_cortex_data_lake `
14
+ - Published to PyPI under new name, ` pan-cortex-data-lake `
15
+ - Moved from RST to MD format for docs files
16
+ - Droped support for ` pipenv `
17
+ - Updated setup.cfg and setup.py
18
+ - Updated tests and test config files
11
19
12
20
## 2.0.0-alpha2 (2020-01-09)
13
21
Original file line number Diff line number Diff line change 3
3
"""Main package for cortex."""
4
4
5
5
__author__ = "Palo Alto Networks"
6
- __version__ = "2.0.0-a4 "
6
+ __version__ = "2.0.0-a5 "
7
7
8
8
from .exceptions import ( # noqa: F401
9
9
CortexError ,
Original file line number Diff line number Diff line change @@ -100,7 +100,10 @@ def __init__(
100
100
self .scope = scope
101
101
self .session = kwargs .pop ("session" , None )
102
102
self .state = None
103
- self .adapter = storage_adapter or "pancloud.adapters.tinydb_adapter.TinyDBStore"
103
+ self .adapter = (
104
+ storage_adapter
105
+ or "pan_cortex_data_lake.adapters.tinydb_adapter.TinyDBStore"
106
+ )
104
107
self .storage = self ._init_adapter (storage_params )
105
108
self .token_lock = Lock ()
106
109
self .token_url = token_url or API_BASE_URL
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 2.0.0a4
2
+ current_version = 2.0.0a5
3
3
commit = True
4
4
tag = True
5
5
Original file line number Diff line number Diff line change 20
20
21
21
setup (
22
22
name = "pan-cortex-data-lake" ,
23
- version = "2.0.0-alpha4 " ,
23
+ version = "2.0.0-a5 " ,
24
24
description = "Python idiomatic SDK for Cortex™ Data Lake." ,
25
25
long_description = readme + "\n \n " + history ,
26
+ long_description_content_type = "text/markdown" ,
26
27
author = "Steven Serrata" ,
27
28
28
29
url = "https://github.com/PaloAltoNetworks/pan-cortex-data-lake-python" ,
You can’t perform that action at this time.
0 commit comments