This repository was archived by the owner on Mar 30, 2026. 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 11# History
22
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+
311## 2.0.0-alpha3 (2020-02-20)
412
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
1119
1220## 2.0.0-alpha2 (2020-01-09)
1321
Original file line number Diff line number Diff line change 33"""Main package for cortex."""
44
55__author__ = "Palo Alto Networks"
6- __version__ = "2.0.0-a4 "
6+ __version__ = "2.0.0-a5 "
77
88from .exceptions import ( # noqa: F401
99 CortexError ,
Original file line number Diff line number Diff line change @@ -100,7 +100,10 @@ def __init__(
100100 self .scope = scope
101101 self .session = kwargs .pop ("session" , None )
102102 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+ )
104107 self .storage = self ._init_adapter (storage_params )
105108 self .token_lock = Lock ()
106109 self .token_url = token_url or API_BASE_URL
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 2.0.0a4
2+ current_version = 2.0.0a5
33commit = True
44tag = True
55
Original file line number Diff line number Diff line change 2020
2121setup (
2222 name = "pan-cortex-data-lake" ,
23- version = "2.0.0-alpha4 " ,
23+ version = "2.0.0-a5 " ,
2424 description = "Python idiomatic SDK for Cortex™ Data Lake." ,
2525 long_description = readme + "\n \n " + history ,
26+ long_description_content_type = "text/markdown" ,
2627 author = "Steven Serrata" ,
2728 author_email = "sserrata@paloaltonetworks.com" ,
2829 url = "https://github.com/PaloAltoNetworks/pan-cortex-data-lake-python" ,
You can’t perform that action at this time.
0 commit comments