cihai-cli 0.15.2__tar.gz → 0.16.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cihai-cli
3
- Version: 0.15.2
3
+ Version: 0.16.0
4
4
  Summary: Command line frontend for the cihai CJK language library
5
5
  Home-page: https://cihai-cli.git-pull.com
6
6
  License: MIT
@@ -19,11 +19,6 @@ Classifier: Programming Language :: Python :: 3.8
19
19
  Classifier: Programming Language :: Python :: 3.9
20
20
  Classifier: Programming Language :: Python :: 3.10
21
21
  Classifier: Programming Language :: Python :: 3.11
22
- Classifier: Programming Language :: Python :: 3
23
- Classifier: Programming Language :: Python :: 3.10
24
- Classifier: Programming Language :: Python :: 3.7
25
- Classifier: Programming Language :: Python :: 3.8
26
- Classifier: Programming Language :: Python :: 3.9
27
22
  Classifier: Programming Language :: Python :: Implementation :: PyPy
28
23
  Classifier: Topic :: Software Development :: Internationalization
29
24
  Classifier: Topic :: Software Development :: Localization
@@ -31,11 +26,10 @@ Classifier: Topic :: System :: Shells
31
26
  Classifier: Topic :: Utilities
32
27
  Provides-Extra: coverage
33
28
  Provides-Extra: docs
34
- Provides-Extra: format
35
29
  Provides-Extra: lint
36
30
  Provides-Extra: test
37
31
  Requires-Dist: PyYAML
38
- Requires-Dist: cihai (>=0.18.3,<0.19.0)
32
+ Requires-Dist: cihai (>=0.19.0,<0.20.0)
39
33
  Project-URL: Bug Tracker, https://github.com/cihai/cihai-cli/issues
40
34
  Project-URL: Documentation, https://cihai-cli.git-pull.com
41
35
  Project-URL: Q & A, https://github.com/cihai/cihai-cli/discussions
@@ -169,6 +163,10 @@ $ cd cihai-cli
169
163
 
170
164
  [Bootstrap your environment and learn more about contributing](https://cihai.git-pull.com/contributing/). We use the same conventions / tools across all cihai projects: `pytest`, `sphinx`, `flake8`, `mypy`, `black`, `isort`, `tmuxp`, and file watcher helpers (e.g. `entr(1)`).
171
165
 
166
+ ## Python versions
167
+
168
+ - Final Python 3.7 version: 0.16.0
169
+
172
170
  ## Quick links
173
171
 
174
172
  - [Quickstart](https://cihai-cli.git-pull.com/quickstart.html)
@@ -124,6 +124,10 @@ $ cd cihai-cli
124
124
 
125
125
  [Bootstrap your environment and learn more about contributing](https://cihai.git-pull.com/contributing/). We use the same conventions / tools across all cihai projects: `pytest`, `sphinx`, `flake8`, `mypy`, `black`, `isort`, `tmuxp`, and file watcher helpers (e.g. `entr(1)`).
126
126
 
127
+ ## Python versions
128
+
129
+ - Final Python 3.7 version: 0.16.0
130
+
127
131
  ## Quick links
128
132
 
129
133
  - [Quickstart](https://cihai-cli.git-pull.com/quickstart.html)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "cihai-cli"
3
- version = "0.15.2"
3
+ version = "0.16.0"
4
4
  description = "Command line frontend for the cihai CJK language library"
5
5
  license = "MIT"
6
6
  authors = ["Tony Narlock <tony@git-pull.com>"]
@@ -57,13 +57,13 @@ Repository = "https://github.com/cihai/cihai-cli"
57
57
 
58
58
  [tool.poetry.dependencies]
59
59
  python = "^3.7"
60
- cihai = "~0.18.3"
60
+ cihai = "~0.19.0"
61
61
  PyYAML = "*"
62
62
 
63
- [tool.poetry.dev-dependencies]
63
+ [tool.poetry.group.dev.dependencies]
64
64
  ### Docs ###
65
65
  sphinx = "*"
66
- gp-libs = "0.0.1a16"
66
+ gp-libs = "*"
67
67
  furo = "*"
68
68
  sphinx-autobuild = "*"
69
69
  sphinx-autodoc-typehints = "*"
@@ -85,23 +85,12 @@ codecov = "*"
85
85
  coverage = "*"
86
86
  pytest-cov = "*"
87
87
 
88
- ### Format ###
89
- black = "*"
90
- isort = "*"
91
-
92
88
  ### Lint ###
93
- flake8 = [
94
- { version = "*", python = "^3.7" },
95
- { version = ">=5", python = "^3.8" },
96
- ]
97
- flake8-bugbear = "*"
98
- flake8-comprehensions = "*"
89
+ black = "*"
90
+ ruff = "*"
99
91
  mypy = "*"
100
92
  types-PyYAML = "*"
101
93
 
102
- ### Quirks ###
103
- importlib-metadata = "<5" # https://github.com/PyCQA/flake8/issues/1701
104
-
105
94
  [tool.poetry.scripts]
106
95
  cihai = "cihai_cli.cli:cli"
107
96
 
@@ -122,15 +111,19 @@ docs = [
122
111
  ]
123
112
  test = ["pytest", "pytest-rerunfailures", "pytest-watcher"]
124
113
  coverage = ["codecov", "coverage", "pytest-cov"]
125
- format = ["black", "isort"]
126
114
  lint = [
127
- "flake8",
128
- "flake8-bugbear",
129
- "flake8-comprehensions",
115
+ "black",
116
+ "ruff",
130
117
  "mypy",
131
118
  "types-PyYAML",
132
119
  ]
133
120
 
121
+ [tool.mypy]
122
+ files = [
123
+ "src/",
124
+ "tests/",
125
+ ]
126
+
134
127
  [[tool.mypy.overrides]]
135
128
  module = [
136
129
  "cihai.*",
@@ -1,6 +1,6 @@
1
1
  __title__ = "cihai-cli"
2
2
  __package_name__ = "cihai_cli"
3
- __version__ = "0.15.2"
3
+ __version__ = "0.16.0"
4
4
  __description__ = "Command line frontend for the cihai CJK language library"
5
5
  __author__ = "Tony Narlock"
6
6
  __email__ = "tony@git-pull.com"
File without changes
File without changes
File without changes