Skip to content

Commit

Permalink
added Kaggle Avazu schema
Browse files Browse the repository at this point in the history
  • Loading branch information
antonymayi committed Apr 3, 2023
1 parent 9983a91 commit f45c628
Show file tree
Hide file tree
Showing 9 changed files with 211 additions and 81 deletions.
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Expand Up @@ -20,7 +20,7 @@ default_language_version:
python: python3
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.4.0
hooks:
- id: check-added-large-files
- id: check-ast
Expand All @@ -37,25 +37,25 @@ repos:
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 22.10.0
rev: 23.3.0
hooks:
- id: black
name: Black
args: [--config=pyproject.toml]
- repo: https://github.com/asottile/pyupgrade
rev: v3.2.0
rev: v3.3.1
hooks:
- id: pyupgrade
name: Python syntax upgrade
args: [--py39-plus]
- repo: https://github.com/hadialqattan/pycln
rev: v2.1.1
rev: v2.1.3
hooks:
- id: pycln
name: Remove unused import statements
args: [--config=pyproject.toml]
- repo: https://github.com/pycqa/isort
rev: 5.10.1
rev: 5.12.0
hooks:
- id: isort
name: Sort import statements
Expand All @@ -70,13 +70,13 @@ repos:
types: [python]
args: [--rcfile=.pylintrc]
- repo: https://github.com/PyCQA/flake8
rev: 5.0.4
rev: 6.0.0
hooks:
- id: flake8
name: Flake8
additional_dependencies: [flake8-bugbear, flake8-typing-imports]
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.3.1
rev: v1.5.1
hooks:
- id: forbid-tabs
- id: insert-license
Expand Down
21 changes: 19 additions & 2 deletions .pylintrc
@@ -1,3 +1,20 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

[MASTER]

# A comma-separated list of package or module names from where C extensions may
Expand Down Expand Up @@ -594,5 +611,5 @@ min-public-methods=2

# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception
overgeneral-exceptions=builtins.BaseException,
builtins.Exception
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -20,7 +20,7 @@
Openschema
==========

[![GitHub Build](https://img.shields.io/github/workflow/status/formlio/openschema/CI%20Build/main)](https://github.com/formlio/openschema/actions/)
[![GitHub Build](https://img.shields.io/github/actions/workflow/status/formlio/openschema/ci.yml?branch=main)](https://github.com/formlio/openschema/actions/)

[![Documentation Status](https://readthedocs.org/projects/openschema/badge/?version=latest)](https://openschema.readthedocs.io/en/latest/)
[![License](https://img.shields.io/pypi/l/openschema)](http://www.apache.org/licenses/LICENSE-2.0.txt)
Expand Down
137 changes: 69 additions & 68 deletions constraints.txt
@@ -1,75 +1,75 @@
#
# This file is autogenerated by pip-compile with python 3.10
# To update, run:
# This file is autogenerated by pip-compile with Python 3.10
# by the following command:
#
# pip-compile --extra=dev,docs --no-emit-index-url --output-file=constraints.txt --strip-extras pyproject.toml
# pip-compile --extra=dev,docs --no-emit-index-url --output-file=constraints.txt --resolver=backtracking --strip-extras pyproject.toml
#
alabaster==0.7.12
alabaster==0.7.13
# via sphinx
astroid==2.12.12
astroid==2.15.2
# via pylint
attrs==22.1.0
attrs==22.2.0
# via
# flake8-bugbear
# pytest
babel==2.11.0
babel==2.12.1
# via sphinx
black==22.10.0
black==23.3.0
# via openschema (pyproject.toml)
build==0.9.0
build==0.10.0
# via pip-tools
certifi==2022.9.24
certifi==2022.12.7
# via requests
cfgv==3.3.1
# via pre-commit
charset-normalizer==2.1.1
charset-normalizer==3.1.0
# via requests
click==8.1.3
# via
# black
# forml
# pip-tools
# typer
cloudpickle==2.2.0
cloudpickle==2.2.1
# via forml
coverage==6.5.0
coverage==7.2.3
# via pytest-cov
dill==0.3.6
# via pylint
distlib==0.3.6
# via virtualenv
docutils==0.17.1
docutils==0.18.1
# via
# sphinx
# sphinx-rtd-theme
exceptiongroup==1.0.1
exceptiongroup==1.1.1
# via pytest
execnet==1.9.0
# via pytest-xdist
filelock==3.8.0
filelock==3.11.0
# via virtualenv
flake8==5.0.4
flake8==6.0.0
# via
# flake8-bugbear
# flake8-colors
# flake8-typing-imports
flake8-bugbear==22.10.27
flake8-bugbear==23.3.23
# via openschema (pyproject.toml)
flake8-colors==0.1.9
# via openschema (pyproject.toml)
flake8-typing-imports==1.14.0
# via openschema (pyproject.toml)
forml==0.9
forml==0.91
# via openschema (pyproject.toml)
identify==2.5.8
identify==2.5.22
# via pre-commit
idna==3.4
# via requests
imagesize==1.4.1
# via sphinx
iniconfig==1.1.1
iniconfig==2.0.0
# via pytest
isort==5.10.1
isort==5.12.0
# via
# openschema (pyproject.toml)
# pylint
Expand All @@ -79,45 +79,44 @@ jinja2==3.1.2
# sphinx
joblib==1.2.0
# via scikit-learn
lazy-object-proxy==1.8.0
lazy-object-proxy==1.9.0
# via astroid
libcst==0.4.7
libcst==0.4.9
# via pycln
markupsafe==2.1.1
markupsafe==2.1.2
# via jinja2
mccabe==0.7.0
# via
# flake8
# pylint
mypy-extensions==0.4.3
mypy-extensions==1.0.0
# via
# black
# typing-inspect
nodeenv==1.7.0
# via pre-commit
numpy==1.23.4
numpy==1.24.2
# via
# forml
# pandas
# scikit-learn
# scipy
packaging==21.3
packaging==23.0
# via
# black
# build
# forml
# pytest
# sphinx
pandas==1.5.1
pandas==2.0.0
# via forml
pathspec==0.9.0
pathspec==0.10.3
# via
# black
# pycln
pep517==0.13.0
# via build
pip-tools==6.9.0
pip-tools==6.13.0
# via openschema (pyproject.toml)
platformdirs==2.5.3
platformdirs==3.2.0
# via
# black
# pylint
Expand All @@ -126,46 +125,44 @@ pluggy==1.0.0
# via pytest
pockets==0.9.1
# via sphinxcontrib-napoleon
pre-commit==2.20.0
pre-commit==3.2.2
# via openschema (pyproject.toml)
pycln==2.1.1
pycln==2.1.3
# via openschema (pyproject.toml)
pycodestyle==2.9.1
pycodestyle==2.10.0
# via flake8
pyenchant==3.2.2
# via sphinxcontrib-spelling
pyflakes==2.5.0
pyflakes==3.0.1
# via flake8
pygments==2.13.0
pygments==2.14.0
# via sphinx
pylint==2.15.5
pylint==2.17.2
# via openschema (pyproject.toml)
pyparsing==3.0.9
# via packaging
pytest==7.2.0
pyproject-hooks==1.0.0
# via build
pytest==7.2.2
# via
# pytest-cov
# pytest-xdist
pytest-cov==4.0.0
# via openschema (pyproject.toml)
pytest-xdist==3.0.2
pytest-xdist==3.2.1
# via openschema (pyproject.toml)
python-dateutil==2.8.2
# via pandas
pytz==2022.6
# via
# babel
# pandas
pytz==2023.3
# via pandas
pyyaml==6.0
# via
# libcst
# pre-commit
# pycln
requests==2.28.1
requests==2.28.2
# via sphinx
scikit-learn==1.1.3
scikit-learn==1.2.2
# via forml
scipy==1.9.3
scipy==1.10.1
# via scikit-learn
six==1.16.0
# via
Expand All @@ -174,25 +171,28 @@ six==1.16.0
# sphinxcontrib-napoleon
snowballstemmer==2.2.0
# via sphinx
sphinx==5.3.0
sphinx==6.1.3
# via
# openschema (pyproject.toml)
# sphinx-copybutton
# sphinx-rtd-theme
# sphinxcontrib-details-directive
# sphinxcontrib-jquery
# sphinxcontrib-spelling
sphinx-copybutton==0.5.0
sphinx-copybutton==0.5.1
# via openschema (pyproject.toml)
sphinx-rtd-theme==1.1.1
sphinx-rtd-theme==1.2.0
# via openschema (pyproject.toml)
sphinxcontrib-applehelp==1.0.2
sphinxcontrib-applehelp==1.0.4
# via sphinx
sphinxcontrib-details-directive==0.1.0
# via openschema (pyproject.toml)
sphinxcontrib-devhelp==1.0.2
# via sphinx
sphinxcontrib-htmlhelp==2.0.0
sphinxcontrib-htmlhelp==2.0.1
# via sphinx
sphinxcontrib-jquery==4.1
# via sphinx-rtd-theme
sphinxcontrib-jsmath==1.0.1
# via sphinx
sphinxcontrib-napoleon==0.7
Expand All @@ -201,42 +201,43 @@ sphinxcontrib-qthelp==1.0.3
# via sphinx
sphinxcontrib-serializinghtml==1.1.5
# via sphinx
sphinxcontrib-spelling==7.6.2
sphinxcontrib-spelling==8.0.0
# via openschema (pyproject.toml)
threadpoolctl==3.1.0
# via scikit-learn
toml==0.10.2
# via
# forml
# pre-commit
# via forml
tomli==2.0.1
# via
# black
# build
# coverage
# forml
# pep517
# pylint
# pyproject-hooks
# pytest
tomlkit==0.11.6
tomlkit==0.11.7
# via
# pycln
# pylint
typer==0.6.1
typer==0.7.0
# via pycln
typing-extensions==4.4.0
typing-extensions==4.5.0
# via
# astroid
# libcst
# typing-inspect
typing-inspect==0.8.0
# via libcst
urllib3==1.26.12
tzdata==2023.3
# via pandas
urllib3==1.26.15
# via requests
virtualenv==20.16.6
virtualenv==20.21.0
# via pre-commit
wheel==0.38.3
wheel==0.40.0
# via pip-tools
wrapt==1.14.1
wrapt==1.15.0
# via astroid

# The following packages are considered to be unsafe in a requirements file:
Expand Down

0 comments on commit f45c628

Please sign in to comment.