refactor: remove ext for InteractiveUtils since it is not used

This commit is contained in:
Wataru Otsubo 2025-01-27 18:52:16 +09:00
parent ecf849ae8a
commit 227fc38196
3 changed files with 4 additions and 25 deletions

View file

@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Exported `create_database`
- In `DispatchChecker.interactive_dispatch_checker`, printed results are now sorted by runid.
### Deleted
- Extension package for InteractiveUtils
## [0.5.1] - 2025-01-23
### Fixed

View file

@ -21,7 +21,6 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
[extensions]
PSBoardDataBaseInteractiveUtilsExt = "InteractiveUtils"
[compat]
Aqua = "0.8"

View file

@ -1,24 +0,0 @@
module PSBoardDataBaseInteractiveUtilsExt
export import_dataframe
using PSBoardDataBase
using CSV
using DataFrames
using InteractiveUtils
"""
import_dataframe() -> DataFrame
Import dataframe from clipboard.
"""
function import_dataframe()
file = tempname()
finalizer(file) do x
@async rm(x)
end
CSV.read(file, DataFrame)
end
end # module