From 3d71f5534b2d165e02527969b48e0d32a6521d9d Mon Sep 17 00:00:00 2001 From: Chuang Wang Date: Wed, 17 Mar 2021 16:53:55 -0700 Subject: [PATCH] move altair to dev dependencies --- poetry.lock | 28 ++++++++++++++-------------- pyproject.toml | 4 ++-- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/poetry.lock b/poetry.lock index 2a7c322..e921a88 100644 --- a/poetry.lock +++ b/poetry.lock @@ -10,7 +10,7 @@ python-versions = "*" name = "altair" version = "4.1.0" description = "Altair: A declarative statistical visualization library for Python." -category = "main" +category = "dev" optional = false python-versions = ">=3.6" @@ -53,7 +53,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" name = "attrs" version = "20.3.0" description = "Classes Without Boilerplate" -category = "main" +category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" @@ -218,7 +218,7 @@ setuptools_scm = "*" name = "entrypoints" version = "0.3" description = "Discover and load entry points from installed packages." -category = "main" +category = "dev" optional = false python-versions = ">=2.7" @@ -378,7 +378,7 @@ test = ["pytest", "pytest-trio", "pytest-asyncio", "testpath", "trio"] name = "jinja2" version = "2.11.3" description = "A very fast and expressive template engine." -category = "main" +category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" @@ -392,7 +392,7 @@ i18n = ["Babel (>=0.8)"] name = "jsonschema" version = "3.2.0" description = "An implementation of JSON Schema validation for Python" -category = "main" +category = "dev" optional = false python-versions = "*" @@ -469,7 +469,7 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pyt name = "markupsafe" version = "1.1.1" description = "Safely add untrusted strings to HTML/XML markup." -category = "main" +category = "dev" optional = false python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*" @@ -577,7 +577,7 @@ python-versions = ">=3.5" name = "numpy" version = "1.20.1" description = "NumPy is the fundamental package for array computing with Python." -category = "main" +category = "dev" optional = false python-versions = ">=3.7" @@ -596,7 +596,7 @@ pyparsing = ">=2.0.2" name = "pandas" version = "1.2.3" description = "Powerful data structures for data analysis, time series, and statistics" -category = "main" +category = "dev" optional = false python-versions = ">=3.7.1" @@ -735,7 +735,7 @@ python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" name = "pyrsistent" version = "0.17.3" description = "Persistent/Functional/Immutable data structures" -category = "main" +category = "dev" optional = false python-versions = ">=3.5" @@ -779,7 +779,7 @@ testing = ["fields", "hunter", "process-tests (==2.0.2)", "six", "pytest-xdist", name = "python-dateutil" version = "2.8.1" description = "Extensions to the standard Python datetime module" -category = "main" +category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" @@ -827,7 +827,7 @@ test = ["coverage (>=5,<6)", "pytest (>=5,<6)", "pytest-xdist (>=1,<2)", "pytest name = "pytz" version = "2021.1" description = "World timezone definitions, modern and historical" -category = "main" +category = "dev" optional = false python-versions = "*" @@ -951,7 +951,7 @@ toml = ["toml"] name = "six" version = "1.15.0" description = "Python 2 and 3 compatibility utilities" -category = "main" +category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" @@ -1116,7 +1116,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" name = "toolz" version = "0.11.1" description = "List processing tools and functional utilities" -category = "main" +category = "dev" optional = false python-versions = ">=3.5" @@ -1217,7 +1217,7 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pyt [metadata] lock-version = "1.1" python-versions = "^3.8" -content-hash = "74d6dc5d881acf37a56f7fce305350ff2ca3b75f0e9d1313cc0b5898b8e09f4d" +content-hash = "082dfbf813e7a3a2f804850a580c22c100067112d9c94093c81b07bd32b64815" [metadata.files] alabaster = [ diff --git a/pyproject.toml b/pyproject.toml index 3c6e492..994c688 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,8 +7,6 @@ license = "MIT" [tool.poetry.dependencies] python = "^3.8" -pandas = "*" -altair = "*" [tool.poetry.dev-dependencies] Sphinx = "^3.5.1" @@ -18,6 +16,8 @@ pytest-cov = "^2.11.1" python-semantic-release = "^7.15.0" nbsphinx = "^0.8.2" ipykernel = "^5.5.0" +altair = "^4.1.0" +pandas = "^1.2.3" [build-system] requires = ["poetry-core>=1.0.0"]