diff --git a/poetry.lock b/poetry.lock index b97b34e..0b76d3a 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,9 +1,10 @@ -# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. [[package]] name = "astroid" version = "2.11.7" description = "An abstract syntax tree for Python with inference support." +category = "dev" optional = false python-versions = ">=3.6.2" files = [ @@ -22,6 +23,7 @@ wrapt = ">=1.11,<2" name = "colorama" version = "0.4.6" description = "Cross-platform colored terminal text." +category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" files = [ @@ -33,6 +35,7 @@ files = [ name = "coverage" version = "7.2.7" description = "Code coverage measurement for Python" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -105,6 +108,7 @@ toml = ["tomli"] name = "dill" version = "0.3.7" description = "serialize all of Python" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -119,6 +123,7 @@ graph = ["objgraph (>=1.7.2)"] name = "isort" version = "5.11.5" description = "A Python utility / library to sort Python imports." +category = "dev" optional = false python-versions = ">=3.7.0" files = [ @@ -136,6 +141,7 @@ requirements-deprecated-finder = ["pip-api", "pipreqs"] name = "joblib" version = "1.3.2" description = "Lightweight pipelining with Python functions" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -147,6 +153,7 @@ files = [ name = "lazy-object-proxy" version = "1.9.0" description = "A fast and thorough lazy object proxy." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -192,6 +199,7 @@ files = [ name = "mccabe" version = "0.7.0" description = "McCabe checker, plugin for flake8" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -203,6 +211,7 @@ files = [ name = "parameterized" version = "0.9.0" description = "Parameterized testing with any Python test framework" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -217,6 +226,7 @@ dev = ["jinja2"] name = "platformdirs" version = "3.10.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -235,6 +245,7 @@ test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-co name = "pylint" version = "2.13.9" description = "python code static checker" +category = "dev" optional = false python-versions = ">=3.6.2" files = [ @@ -259,6 +270,7 @@ testutil = ["gitpython (>3)"] name = "setuptools" version = "68.0.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -275,6 +287,7 @@ testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs ( name = "tomli" version = "2.0.1" description = "A lil' TOML parser" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -286,6 +299,7 @@ files = [ name = "typed-ast" version = "1.5.5" description = "a fork of Python 2 and 3 ast modules with type comment support" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -336,6 +350,7 @@ files = [ name = "typing-extensions" version = "4.7.1" description = "Backported and Experimental Type Hints for Python 3.7+" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -347,6 +362,7 @@ files = [ name = "wrapt" version = "1.15.0" description = "Module for decorators, wrappers and monkey patching." +category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" files = [ diff --git a/pyproject.toml b/pyproject.toml index 339c90f..c33a0c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "streams.py" -version = "1.0.1" +version = "1.0.2" authors = ["Stefan Garlonta "] description = "A stream library for Python inspired by Java Stream API" keywords = ["streams", "parallel", "data"] diff --git a/pystreamapi/__init__.py b/pystreamapi/__init__.py index 67cd56a..9302d4f 100644 --- a/pystreamapi/__init__.py +++ b/pystreamapi/__init__.py @@ -1,5 +1,5 @@ from pystreamapi.__stream import Stream from pystreamapi._streams.error.__levels import ErrorLevel -__version__ = "1.0.1" +__version__ = "1.0.2" __all__ = ["Stream", "ErrorLevel"]