Skip to content

Commit b5c69b4

Browse files
committed
fixing pull request comments
1 parent 22a4c04 commit b5c69b4

File tree

5 files changed

+158
-86
lines changed

5 files changed

+158
-86
lines changed

.gitignore

Lines changed: 61 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,67 @@
1-
__pycache__/
2-
.pyc
3-
.DS_Store
4-
.ipynb_checkpoints
1+
#Ignore Data file
52
/data
3+
4+
# Figures
65
/figures
76
qolmat/notebooks/figures
7+
8+
# Byte-compiled / optimized / DLL files
9+
__pycache__/
10+
*.py[cod]
11+
*$py.class
12+
.pyc
13+
.DS_Store
14+
.mypy*
15+
16+
17+
# documentation specific
18+
docs/
19+
20+
# Distribution / packaging
21+
22+
.Python
23+
env/
24+
build/
25+
develop-eggs/
26+
dist/
27+
eggs/
28+
.eggs/
29+
lib/
30+
lib64/
31+
parts/
32+
sdist/
33+
var/
34+
*.egg-info/
35+
.installed.cfg
36+
*.egg
37+
38+
# PyInstaller
39+
# Usually these files are written by a python script from a template
40+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
41+
*.manifest
42+
*.spec
43+
44+
# Installer logs
45+
pip-log.txt
46+
pip-delete-this-directory.txt
47+
48+
# Unit test / coverage reports
49+
htmlcov/
50+
.tox/
51+
.coverage
52+
.coverage.*
53+
.cache
54+
nosetests.xml
55+
coverage.xml
56+
*,cover
57+
.hypothesis/
58+
59+
60+
# Notebooks
61+
**.ipynb_checkpoints
862
qolmat/notebooks/*.ipynb
963
qolmat/examples/*.ipynb
10-
*.egg-info
11-
/dist
12-
/build
13-
*SOURCES.txt
14-
TimeSynth*
15-
/scripts
64+
65+
66+
# VSCode
1667
.vscode

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,6 @@ On each sample, different imputation models are tested and reconstruction errors
5454
cconda env create -f environment.dev.yml
5555
conda activate env_qolmat_dev
5656
```
57-
### installtion for pip user
58-
59-
'''
60-
pip install -r requirements.dev.txt
61-
pip install -e .
62-
'''
6357

6458
### Install pre-commit
6559

mypy.ini

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[mypy]
2+
python_version = 3.10
3+
ignore_missing_imports = True
4+
disable_error_code = union-attr
5+
6+
7+
[mypy-sklearn.*]
8+
ignore_errors = True
9+
10+
[mypy-doc.*]
11+
ignore_errors = True
12+
13+
[mypy-matplotlib.*]
14+
ignore_missing_imports = True
15+
16+
[mypy-numpy.*]
17+
ignore_missing_imports = True
18+
ignore_errors = True
19+
disable_error_code = attr-defined

0 commit comments

Comments
 (0)