Change min python version dependency

This commit is contained in:
Safar Ligal 2020-06-06 21:24:59 +05:45
parent 594b5b272f
commit 838534fb45
5 changed files with 58 additions and 8 deletions

View File

@ -39,10 +39,14 @@ pip install --user alacritty-colorscheme
## Running locally
```bash
# Install poetry
pip install --user poetry
# Get program
git clone https://github.com/toggle-corp/alacritty-colorscheme.git
# Install
# Run program
cd alacritty-colorscheme
poetry install
poetry run python alacritty_colorscheme/cli.py
```
@ -83,7 +87,7 @@ alacritty-colorscheme -C $DEST/themes -T
If you are using base16 colorschemes from
[base16-vim](https://github.com/chriskempson/base16-vim), you can use the `-V`
argument to generate `~/.vimrc_background` file while changing alacritty
argument to generate `~/.vimrc_background` file when you change alacritty
colorscheme.
You will need to source the file in your vimrc to load the appropriate

View File

@ -1 +1 @@
__version__ = '0.1.0'
__version__ = '0.1.2'

50
poetry.lock generated
View File

@ -30,6 +30,22 @@ optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
version = "0.4.3"
[[package]]
category = "dev"
description = "Read metadata from Python packages"
marker = "python_version < \"3.8\""
name = "importlib-metadata"
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
version = "1.6.1"
[package.dependencies]
zipp = ">=0.5"
[package.extras]
docs = ["sphinx", "rst.linker"]
testing = ["packaging", "pep517", "importlib-resources (>=1.3)"]
[[package]]
category = "dev"
description = "More routines for operating on iterables, beyond itertools"
@ -58,6 +74,11 @@ optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
version = "0.13.1"
[package.dependencies]
[package.dependencies.importlib-metadata]
python = "<3.8"
version = ">=0.12"
[package.extras]
dev = ["pre-commit", "tox"]
@ -95,6 +116,10 @@ pluggy = ">=0.12,<1.0"
py = ">=1.5.0"
wcwidth = "*"
[package.dependencies.importlib-metadata]
python = "<3.8"
version = ">=0.12"
[package.extras]
checkqa-mypy = ["mypy (v0.761)"]
testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"]
@ -141,9 +166,22 @@ optional = false
python-versions = "*"
version = "0.2.3"
[[package]]
category = "dev"
description = "Backport of pathlib-compatible object wrapper for zip files"
marker = "python_version < \"3.8\""
name = "zipp"
optional = false
python-versions = ">=3.6"
version = "3.1.0"
[package.extras]
docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"]
testing = ["jaraco.itertools", "func-timeout"]
[metadata]
content-hash = "8467d1c797a0b4d804f2d47e1111d93861648b5e5799f11825a98c0b192df611"
python-versions = "^3.8"
content-hash = "11b7df53331b54b85031de32ec93bcbd43d82eaee8bcffb202e0d8162beacb21"
python-versions = "^3.6"
[metadata.files]
atomicwrites = [
@ -158,6 +196,10 @@ colorama = [
{file = "colorama-0.4.3-py2.py3-none-any.whl", hash = "sha256:7d73d2a99753107a36ac6b455ee49046802e59d9d076ef8e47b61499fa29afff"},
{file = "colorama-0.4.3.tar.gz", hash = "sha256:e96da0d330793e2cb9485e9ddfd918d456036c7149416295932478192f4436a1"},
]
importlib-metadata = [
{file = "importlib_metadata-1.6.1-py2.py3-none-any.whl", hash = "sha256:15ec6c0fd909e893e3a08b3a7c76ecb149122fb14b7efe1199ddd4c7c57ea958"},
{file = "importlib_metadata-1.6.1.tar.gz", hash = "sha256:0505dd08068cfec00f53a74a0ad927676d7757da81b7436a6eefe4c7cf75c545"},
]
more-itertools = [
{file = "more-itertools-8.3.0.tar.gz", hash = "sha256:558bb897a2232f5e4f8e2399089e35aecb746e1f9191b6584a151647e89267be"},
{file = "more_itertools-8.3.0-py3-none-any.whl", hash = "sha256:7818f596b1e87be009031c7653d01acc46ed422e6656b394b0f765ce66ed4982"},
@ -215,3 +257,7 @@ wcwidth = [
{file = "wcwidth-0.2.3-py2.py3-none-any.whl", hash = "sha256:980fbf4f3c196c0f329cdcd1e84c554d6a211f18e252e525a0cf4223154a41d6"},
{file = "wcwidth-0.2.3.tar.gz", hash = "sha256:edbc2b718b4db6cdf393eefe3a420183947d6aa312505ce6754516f458ff8830"},
]
zipp = [
{file = "zipp-3.1.0-py3-none-any.whl", hash = "sha256:aa36550ff0c0b7ef7fa639055d797116ee891440eac1a56f378e2d3179e0320b"},
{file = "zipp-3.1.0.tar.gz", hash = "sha256:c599e4d75c98f6798c509911d08a22e6c021d074469042177c8c86fb92eefd96"},
]

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "alacritty-colorscheme"
version = "0.1.1"
version = "0.1.2"
description = "Change colorscheme of alacritty with ease"
license="Apache-2.0"
authors = ["Safar Ligal <weathermist@gmail.com>"]
@ -21,7 +21,7 @@ classifiers = [
]
[tool.poetry.dependencies]
python = "^3.8"
python = "^3.6"
"ruamel.yaml" = "^0.16.10"
[tool.poetry.dev-dependencies]

View File

@ -2,4 +2,4 @@ from alacritty_colorscheme import __version__
def test_version():
assert __version__ == '0.1.0'
assert __version__ == '0.1.2'