Skip to content

Commit

Permalink
Merge pull request #11 from CIAT-DAPA/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Minotriz02 authored May 28, 2024
2 parents 2fe294a + e8022dd commit 03d7a01
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
Binary file modified requirements.txt
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
'python-dateutil==2.9.0.post0',
'pytz==2024.1',
'rasterio==1.3.10',
'requests==2.31.0',
'requests==2.32.2',
'shapely==2.0.4',
'six==1.16.0',
'snuggs==1.4.7',
Expand Down
2 changes: 1 addition & 1 deletion src/test/test_agronomy.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))

from src.aclimate_api.agronomy import Agronomy
from aclimate_api.agronomy import Agronomy
from test.mock.mock_agronomy import agronomy_mock_data

url_root = "https://webapi.aclimate.org/api/"
Expand Down
2 changes: 1 addition & 1 deletion src/test/test_forecast.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))

from src.aclimate_api.forecast import Forecast
from aclimate_api.forecast import Forecast
from test.mock.mock_forecast import forecast_climate_mock_data, forecast_crop_mock_data, forecast_information_mock_data, forecast_subseasonal_mock_data, forecast_climate_previous_mock_data, forecast_crop_previous_mock_data, forecast_crop_ext_mock_data

url_root = "https://webapi.aclimate.org/api/"
Expand Down
2 changes: 1 addition & 1 deletion src/test/test_geographic.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))

from src.aclimate_api.geographic import Geographic
from aclimate_api.geographic import Geographic
from test.mock.mock_geographic import geographic_country_mock_data, geographic_mock_data, geographic_ws_mock_data

url_root = "https://webapi.aclimate.org/api/"
Expand Down
2 changes: 1 addition & 1 deletion src/test/test_geoserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import geopandas as gpd
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))

from src.aclimate_api.geoserver import Geoserver
from aclimate_api.geoserver import Geoserver
from test.mock.mock_geoserver import geo_workspace_mock_data, geo_mosaic_name_mock_data, geo_polygon_name_mock_data, geo_polygon_mock_data

url_root = "https://webapi.aclimate.org/api/"
Expand Down
2 changes: 1 addition & 1 deletion src/test/test_historical.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))

from src.aclimate_api.historical import Historical
from aclimate_api.historical import Historical
from test.mock.mock_historical import historical_climatology_mock_data, historical_climatic_mock_data, yield_years_mock_data, yield_mock_data

url_root = "https://webapi.aclimate.org/api/"
Expand Down

0 comments on commit 03d7a01

Please sign in to comment.