Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed namespace to sdr_hazards_classification #7

Merged
merged 2 commits into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include src/sdr_classifier/data/*.csv
include src/sdr_classifier/model/*.config
include src/sdr_classifier/model/*.model
include src/sdr_hazards_classification/data/*.csv
include src/sdr_hazards_classification/model/*.config
include src/sdr_hazards_classification/model/*.model
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='sdr-hazards-classification',
version='0.1.0',
version='0.1.1',
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
Expand Down
2 changes: 1 addition & 1 deletion src/test/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import pytest
import numpy as np
from numpy.testing import assert_array_equal
from sdr_classifier.sdr_api import SdrInferenceAPI
from sdr_hazards_classification.sdr_api import SdrInferenceAPI
# my_model = sdr_api.SdrInferenceAPI()
# my_model.test_sdr_depressurization_predictions()

Expand Down