python-gitmojis 0.1.2__tar.gz → 0.1.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (19) hide show
  1. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/PKG-INFO +1 -1
  2. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/pyproject.toml +1 -3
  3. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/src/python_gitmojis.egg-info/PKG-INFO +1 -1
  4. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/LICENSE +0 -0
  5. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/README.md +0 -0
  6. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/requirements.txt +0 -0
  7. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/setup.cfg +0 -0
  8. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/src/gitmojis/__init__.py +0 -0
  9. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/src/gitmojis/core.py +0 -0
  10. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/src/gitmojis/exceptions.py +0 -0
  11. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/src/gitmojis/helpers.py +0 -0
  12. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/src/gitmojis/typing.py +0 -0
  13. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/src/python_gitmojis.egg-info/SOURCES.txt +0 -0
  14. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/src/python_gitmojis.egg-info/dependency_links.txt +0 -0
  15. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/src/python_gitmojis.egg-info/requires.txt +0 -0
  16. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/src/python_gitmojis.egg-info/top_level.txt +0 -0
  17. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/tests/test_core.py +0 -0
  18. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/tests/test_helpers.py +0 -0
  19. {python-gitmojis-0.1.2 → python-gitmojis-0.1.4}/tests/test_package.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-gitmojis
3
- Version: 0.1.2
3
+ Version: 0.1.4
4
4
  Summary: 🐍 A small package to apply and manage Gitmojis in your projects 😜
5
5
  Author-email: Kamil Paduszyński <paduszyk@gmail.com>
6
6
  Maintainer-email: Kamil Paduszyński <paduszyk@gmail.com>
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "python-gitmojis"
7
- version = "0.1.2"
7
+ version = "0.1.4"
8
8
  description = "🐍 A small package to apply and manage Gitmojis in your projects 😜"
9
9
  readme = "README.md"
10
10
  requires-python = ">= 3.7"
@@ -70,7 +70,6 @@ find = { include = ["gitmojis*"], where = ["src"] }
70
70
  dependencies = { file = "requirements.txt" }
71
71
 
72
72
  [tool.black]
73
- target-version = ["py311"]
74
73
  line-length = 88
75
74
 
76
75
  [tool.mypy]
@@ -78,7 +77,6 @@ exclude = "(build)"
78
77
  ignore_missing_imports = true
79
78
 
80
79
  [tool.ruff]
81
- target-version = "py311"
82
80
  line-length = 88
83
81
  select = [
84
82
  "F", # pyflakes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-gitmojis
3
- Version: 0.1.2
3
+ Version: 0.1.4
4
4
  Summary: 🐍 A small package to apply and manage Gitmojis in your projects 😜
5
5
  Author-email: Kamil Paduszyński <paduszyk@gmail.com>
6
6
  Maintainer-email: Kamil Paduszyński <paduszyk@gmail.com>
File without changes