Skip to content

Commit

Permalink
fix (v0.1.2): add importlib-metadata to core dependencies (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
rikhilrai committed Feb 2, 2022
1 parent 1104a5d commit bdb4863
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 54 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Expand Up @@ -64,6 +64,12 @@ jobs:
run: timeout 10s poetry run pip --version || rm -rf .venv

- name: Install dependencies
run: poetry install --no-dev

- name: Check imports
run: poetry run python -c 'from src.case_insensitive_dict import __version__; print(__version__)'

- name: Install dev dependencies
run: poetry install

- name: Check code style (black)
Expand Down
4 changes: 3 additions & 1 deletion README.md
@@ -1,15 +1,17 @@
# Case Insensitive Dict

Case Insensitive Dictionary
Typed Python Case Insensitive Dictionary

[![Publish](https://github.com/DeveloperRSquared/case-insensitive-dict/actions/workflows/publish.yml/badge.svg)](https://github.com/DeveloperRSquared/case-insensitive-dict/actions/workflows/publish.yml)

[![Python 3.7+](https://img.shields.io/badge/python-3.7+-brightgreen.svg)](#case-insensitive-dict)
[![PyPI - License](https://img.shields.io/pypi/l/case-insensitive-dictionary.svg)](LICENSE)
[![PyPI - Version](https://img.shields.io/pypi/v/case-insensitive-dictionary.svg)](https://pypi.org/project/case-insensitive-dictionary)

[![CodeQL](https://github.com/DeveloperRSquared/case-insensitive-dict/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/DeveloperRSquared/case-insensitive-dict/actions/workflows/codeql-analysis.yml)
[![codecov](https://codecov.io/gh/DeveloperRSquared/case-insensitive-dict/branch/main/graph/badge.svg?token=45JCHX8KT9)](https://codecov.io/gh/DeveloperRSquared/case-insensitive-dict)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/DeveloperRSquared/case-insensitive-dict/main.svg)](https://results.pre-commit.ci/latest/github/DeveloperRSquared/case-insensitive-dict/main)

[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
Expand Down
101 changes: 49 additions & 52 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "case-insensitive-dictionary"
version = "0.1.1"
version = "0.1.2"
description = "Case Insensitive Dictionary"
authors = ["rikhilrai"]
license = "MIT"
Expand Down Expand Up @@ -39,6 +39,7 @@ packages = [

[tool.poetry.dependencies]
python = "^3.7"
importlib-metadata = { version = "<4.3", python = "<3.8" }

[tool.poetry.dev-dependencies]
mypy = "^0.931"
Expand Down

0 comments on commit bdb4863

Please sign in to comment.