Skip to content

Commit 607bbaf

Browse files
Merge pull request #381 from shankarpandala/dev
Updated to version 0.2.10 to support python versions 3.9 and 3.10
2 parents 9fea921 + ecff780 commit 607bbaf

File tree

14 files changed

+124
-356
lines changed

14 files changed

+124
-356
lines changed

.circleci/config.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Use the latest 2.1 version of CircleCI pipeline process engine.
2+
# See: https://circleci.com/docs/2.0/configuration-reference
3+
version: 2.1
4+
5+
# Define a job to be invoked later in a workflow.
6+
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
7+
jobs:
8+
say-hello:
9+
# Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
10+
# See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
11+
docker:
12+
- image: cimg/base:stable
13+
# Add steps to the job
14+
# See: https://circleci.com/docs/2.0/configuration-reference/#steps
15+
steps:
16+
- checkout
17+
- run:
18+
name: "Say hello"
19+
command: "echo Hello, World!"
20+
21+
# Invoke jobs via workflows
22+
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
23+
workflows:
24+
say-hello-workflow:
25+
jobs:
26+
- say-hello

.github/FUNDING.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# These are supported funding model platforms
2+
3+
github: [shankarpandala] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g.,
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
13+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
language: python
1212
python:
1313
- 3.8
14+
- 3.9
15+
- '3.10'
1416

1517
install: pip install -U tox-travis
1618
script: tox
@@ -24,4 +26,4 @@ deploy:
2426
on:
2527
tags: true
2628
repo: shankarpandala/lazypredict
27-
python: 3.8
29+
python: 3.x

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
History
33
=======
44

5+
0.2.10 (2022-02-06)
6+
------------------
7+
8+
* Fixed issue with older version of Scikit-learn
9+
* Reduced dependencies sctrictly to few
10+
511
0.2.8 (2021-02-06)
612
------------------
713

app/README.md

Lines changed: 0 additions & 42 deletions
This file was deleted.

app/app.py

Lines changed: 0 additions & 180 deletions
This file was deleted.

app/requirements.txt

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)