dataflow-core 2.0.9__tar.gz → 2.0.10__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 dataflow-core might be problematic. Click here for more details.

Files changed (31) hide show
  1. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/PKG-INFO +1 -1
  2. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/authenticator/package/models/user.py +1 -2
  3. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow_core.egg-info/PKG-INFO +1 -1
  4. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/setup.py +1 -1
  5. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/README.md +0 -0
  6. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/authenticator/__init__.py +0 -0
  7. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/authenticator/dataflowairflowauthenticator.py +0 -0
  8. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/authenticator/dataflowhubauthenticator.py +0 -0
  9. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/authenticator/dataflowsupersetauthenticator.py +0 -0
  10. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/authenticator/package/__init__.py +0 -0
  11. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/authenticator/package/configuration.py +0 -0
  12. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/authenticator/package/models/__init__.py +0 -0
  13. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/authenticator/package/models/database.py +0 -0
  14. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/authenticator/package/models/session.py +0 -0
  15. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow/__init__.py +0 -0
  16. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow/configuration.py +0 -0
  17. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow/dataflow.py +0 -0
  18. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow/environment.py +0 -0
  19. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow/models/__init__.py +0 -0
  20. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow/models/database.py +0 -0
  21. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow/models/environment.py +0 -0
  22. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow/scripts/clone_environment.sh +0 -0
  23. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow/scripts/create_environment.sh +0 -0
  24. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow/utils/__init__.py +0 -0
  25. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow/utils/aws_secrets_manager.py +0 -0
  26. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow_core.egg-info/SOURCES.txt +0 -0
  27. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow_core.egg-info/dependency_links.txt +0 -0
  28. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow_core.egg-info/entry_points.txt +0 -0
  29. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow_core.egg-info/requires.txt +0 -0
  30. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/dataflow_core.egg-info/top_level.txt +0 -0
  31. {dataflow_core-2.0.9 → dataflow_core-2.0.10}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dataflow-core
3
- Version: 2.0.9
3
+ Version: 2.0.10
4
4
  Summary: Dataflow core package
5
5
  Author: Dataflow
6
6
  Author-email:
@@ -1,5 +1,5 @@
1
1
  """models.py"""
2
- from sqlalchemy import Column, Integer, String, LargeBinary, Enum
2
+ from sqlalchemy import Column, Integer, String, LargeBinary, Enum, Boolean
3
3
  from sqlalchemy.ext.declarative import declarative_base
4
4
 
5
5
  #instance for create declarative base
@@ -17,7 +17,6 @@ class User(Base):
17
17
  first_name = Column(String)
18
18
  last_name = Column(String)
19
19
  email = Column(String, unique=True)
20
- role = Column(Enum('admin', 'user', name='role_field'), nullable=False)
21
20
  image = Column(LargeBinary)
22
21
  active = Column(Enum('N', 'Y', name='active_field'), nullable=False, server_default=str("N"))
23
22
  password = Column(String, nullable=False)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dataflow-core
3
- Version: 2.0.9
3
+ Version: 2.0.10
4
4
  Summary: Dataflow core package
5
5
  Author: Dataflow
6
6
  Author-email:
@@ -14,7 +14,7 @@ class PostInstall(install):
14
14
 
15
15
  setup(
16
16
  name="dataflow-core",
17
- version="2.0.9",
17
+ version="2.0.10",
18
18
  packages=find_packages(include=["dataflow", "dataflow.*", "authenticator", "authenticator.*"]),
19
19
  include_package_data=True,
20
20
  package_data={
File without changes
File without changes