Skip to content

Commit 968ef26

Browse files
author
PyCaret
committed
Merge branch 'dev-1.0.1'
1 parent a9852ce commit 968ef26

File tree

110 files changed

+388544
-396872
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+388544
-396872
lines changed

.gitignore

Whitespace-only changes.

.ipynb_checkpoints/nb_test-checkpoint.ipynb

Lines changed: 1023 additions & 0 deletions
Large diffs are not rendered by default.

.log

Lines changed: 175 additions & 0 deletions
Large diffs are not rendered by default.

.slugignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
datasets/
2+
doc/
3+
examples/
4+
maint_tools/
5+
tutorials/
6+
releases/

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: python
2+
python:
3+
- 3.6
4+
- 3.7
5+
- 3.8
6+
before_install:
7+
- python --version
8+
- pip install -U pip
9+
- pip install -U pytest
10+
- pip install codecov
11+
install:
12+
- pip install -r requirements.txt
13+
script: pytest # run tests
14+
after_success:
15+
- codecov # submit coverage

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"python.pythonPath": "C:\\Users\\moezs\\Anaconda3\\envs\\pycaret-dev\\python.exe"
3+
}

CHANGELOG.md

Lines changed: 189 additions & 0 deletions
Large diffs are not rendered by default.

CODE_OF_CONDUCT.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Code of Conduct
2+
3+
We are a community based on openness and friendly, didactic, discussions.
4+
5+
We aspire to treat everybody equally, and value their contributions.
6+
7+
Decisions are made based on technical merit and consensus.
8+
9+
Code is not the only way to help the project. Reviewing pull requests, answering questions to help others on mailing lists or issues, organizing and teaching tutorials, working on the website, improving the documentation, are all priceless contributions.
10+
11+
We abide by the principles of openness, respect, and consideration of others of the Python Software Foundation: https://www.python.org/psf/codeofconduct/

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Contribution Guidelines

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM python:3.7-slim
2+
3+
WORKDIR /app
4+
5+
ADD . /app
6+
7+
RUN apt-get update && apt-get install -y libgomp1
8+
9+
RUN pip install --trusted-host pypi.python.org -r requirements.txt
10+
11+
CMD pytest

0 commit comments

Comments
 (0)