-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refac: Update docker and wheel (#3013)
- Loading branch information
Showing
13 changed files
with
89 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,21 +18,21 @@ pytest-xdist | |
# | ||
databricks-cli==0.18 | ||
dataclasses-json==0.6.7 | ||
delta-spark==3.1.0 | ||
dependency_injector==4.41.0 | ||
azure-identity==1.19.0 | ||
azure-keyvault-secrets==4.9.0 | ||
delta-spark==3.2.0 | ||
pyspark==3.5.1 | ||
dependency_injector==4.43.0 | ||
azure-identity==1.17.1 | ||
azure-keyvault-secrets==4.8.0 | ||
azure-monitor-opentelemetry==1.6.4 | ||
azure-core==1.32.0 | ||
azure-monitor-query==1.4.0 | ||
azure-storage-file-datalake==12.11.0 | ||
opengeh-spark-sql-migrations @ git+https://[email protected]/Energinet-DataHub/[email protected]#subdirectory=source/spark_sql_migrations | ||
python-dateutil==2.9.0.post0 | ||
opengeh-spark-sql-migrations @ git+https://[email protected]/Energinet-DataHub/[email protected]#subdirectory=source/spark_sql_migrations | ||
python-dateutil==2.8.2 | ||
types-python-dateutil==2.9.0.20241003 | ||
opengeh-telemetry @ git+https://[email protected]/Energinet-DataHub/opengeh-python-packages@2.3.1#subdirectory=source/telemetry | ||
opengeh-telemetry @ git+https://[email protected]/Energinet-DataHub/opengeh-python-packages@2.4.1#subdirectory=source/telemetry | ||
|
||
coverage==7.6.8 | ||
pytest==8.3.3 | ||
configargparse==1.7.0 | ||
pytest-mock==3.14.0 | ||
virtualenv==20.28.0 | ||
virtualenv==20.24.2 |
Empty file.
Empty file.
6 changes: 6 additions & 0 deletions
6
...ce/databricks/calculation_engine/contracts/data_products/wholesale_basis_data/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from .charge_link_periods_v1 import charge_link_periods_v1 | ||
from .charge_price_information_periods_v1 import charge_price_information_periods_v1 | ||
from .charge_price_points_v1 import charge_price_points_v1 | ||
from .grid_loss_metering_points_v1 import grid_loss_metering_points_v1 | ||
from .metering_point_periods_v1 import metering_point_periods_v1 | ||
from .time_series_points_v1 import time_series_points_v1 |
11 changes: 11 additions & 0 deletions
11
source/databricks/calculation_engine/contracts/data_products/wholesale_results/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from .amounts_per_charge_v1 import amounts_per_charge_v1 | ||
from .energy_per_brp_v1 import energy_per_brp_v1 | ||
from .energy_per_es_v1 import energy_per_es_v1 | ||
from .energy_v1 import energy_v1 | ||
from .exchange_per_neighbor_v1 import exchange_per_neighbor_v1 | ||
from .grid_loss_metering_point_time_series_v1 import ( | ||
grid_loss_metering_point_time_series_v1, | ||
) | ||
from .latest_calculations_by_day_v1 import latest_calculations_by_day_v1 | ||
from .monthly_amounts_per_charge_v1 import monthly_amounts_per_charge_v1 | ||
from .total_monthly_amounts_v1 import total_monthly_amounts_v1 |
3 changes: 3 additions & 0 deletions
3
source/databricks/calculation_engine/contracts/data_products/wholesale_sap/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from .energy_v1 import energy_v1 | ||
from .latest_calculations_history_v1 import latest_calculations_history_v1 | ||
from .amounts_per_charge_v1 import amounts_per_charge_v1 |
13 changes: 13 additions & 0 deletions
13
...ricks/calculation_engine/contracts/data_products/wholesale_settlement_reports/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from .amounts_per_charge_v1 import amounts_per_charge_v1 | ||
from .charge_link_periods_v1 import charge_link_periods_v1 | ||
from .charge_prices_v1 import charge_prices_v1 | ||
from .current_balance_fixing_calculation_version_v1 import ( | ||
current_balance_fixing_calculation_version_v1, | ||
) | ||
from .energy_per_es_v1 import energy_per_es_v1 | ||
from .energy_v1 import energy_v1 | ||
from .metering_point_periods_v1 import metering_point_periods_v1 | ||
from .metering_point_time_series_v1 import metering_point_time_series_v1 | ||
from .monthly_amounts_per_charge_v1 import monthly_amounts_per_charge_v1 | ||
from .monthly_amounts_v1 import monthly_amounts_v1 | ||
from .total_monthly_amounts_v1 import total_monthly_amounts_v1 |
1 change: 1 addition & 0 deletions
1
source/databricks/calculation_engine/contracts/wholesale_internal/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .succeeded_external_calculations_v1 import succeeded_external_calculations_v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,16 +29,16 @@ | |
# Make sure these packages are added to the docker container and pinned to the same versions | ||
install_requires=[ | ||
"ConfigArgParse==1.7.0", | ||
"pyspark==3.5.1", | ||
"azure-identity==1.19.0", | ||
"dependency_injector==4.41.0", | ||
"pyspark==3.5.1", # This needs to be same version pyspark-slim in docker file | ||
"azure-identity==1.17.1", | ||
"dependency_injector==4.43.0", | ||
"urllib3==2.2.*", | ||
"delta-spark==3.1.0", | ||
"python-dateutil==2.9.0.post0", | ||
"delta-spark==3.2.0", | ||
"python-dateutil==2.8.2", | ||
"azure-monitor-opentelemetry==1.6.4", | ||
"azure-core==1.32.0", | ||
"opengeh-spark-sql-migrations @ git+https://[email protected]/Energinet-DataHub/opengeh-python-packages@1.9.0#subdirectory=source/spark_sql_migrations", | ||
"opengeh-telemetry @ git+https://[email protected]/Energinet-DataHub/opengeh-python-packages@2.3.1#subdirectory=source/telemetry", | ||
"opengeh-spark-sql-migrations @ git+https://[email protected]/Energinet-DataHub/opengeh-python-packages@2.4.1#subdirectory=source/spark_sql_migrations", | ||
"opengeh-telemetry @ git+https://[email protected]/Energinet-DataHub/opengeh-python-packages@2.4.1#subdirectory=source/telemetry", | ||
], | ||
entry_points={ | ||
"console_scripts": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters