mirror of
https://gitlab.cern.ch/wotsubo/PSBoardDataBase.git
synced 2025-06-08 05:55:42 +09:00
refactor: remove ext for InteractiveUtils since it is not used
This commit is contained in:
parent
ecf849ae8a
commit
227fc38196
3 changed files with 4 additions and 25 deletions
|
@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Exported `create_database`
|
- Exported `create_database`
|
||||||
- In `DispatchChecker.interactive_dispatch_checker`, printed results are now sorted by runid.
|
- In `DispatchChecker.interactive_dispatch_checker`, printed results are now sorted by runid.
|
||||||
|
|
||||||
|
### Deleted
|
||||||
|
|
||||||
|
- Extension package for InteractiveUtils
|
||||||
|
|
||||||
## [0.5.1] - 2025-01-23
|
## [0.5.1] - 2025-01-23
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -21,7 +21,6 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
|
||||||
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
|
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
|
||||||
|
|
||||||
[extensions]
|
[extensions]
|
||||||
PSBoardDataBaseInteractiveUtilsExt = "InteractiveUtils"
|
|
||||||
|
|
||||||
[compat]
|
[compat]
|
||||||
Aqua = "0.8"
|
Aqua = "0.8"
|
||||||
|
|
|
@ -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
|
|
Loading…
Add table
Reference in a new issue