moz-fluent-linter 0.4.6__tar.gz → 0.4.7__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 (24) hide show
  1. {moz_fluent_linter-0.4.6/src/moz_fluent_linter.egg-info → moz_fluent_linter-0.4.7}/PKG-INFO +4 -4
  2. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/README.md +1 -1
  3. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/setup.cfg +2 -2
  4. moz_fluent_linter-0.4.7/src/fluent_linter/__init__.py +1 -0
  5. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7/src/moz_fluent_linter.egg-info}/PKG-INFO +4 -4
  6. moz_fluent_linter-0.4.7/src/moz_fluent_linter.egg-info/requires.txt +3 -0
  7. moz_fluent_linter-0.4.6/src/fluent_linter/__init__.py +0 -1
  8. moz_fluent_linter-0.4.6/src/moz_fluent_linter.egg-info/requires.txt +0 -3
  9. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/LICENSE +0 -0
  10. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/pyproject.toml +0 -0
  11. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/setup.py +0 -0
  12. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/src/fluent_linter/linter.py +0 -0
  13. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/src/moz_fluent_linter.egg-info/SOURCES.txt +0 -0
  14. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/src/moz_fluent_linter.egg-info/dependency_links.txt +0 -0
  15. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/src/moz_fluent_linter.egg-info/entry_points.txt +0 -0
  16. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/src/moz_fluent_linter.egg-info/top_level.txt +0 -0
  17. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/tests/test_banned_words.py +0 -0
  18. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/tests/test_brands.py +0 -0
  19. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/tests/test_comments.py +0 -0
  20. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/tests/test_comments_variables.py +0 -0
  21. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/tests/test_ids.py +0 -0
  22. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/tests/test_placeable_style.py +0 -0
  23. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/tests/test_syntax.py +0 -0
  24. {moz_fluent_linter-0.4.6 → moz_fluent_linter-0.4.7}/tests/test_typography.py +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: moz-fluent-linter
3
- Version: 0.4.6
3
+ Version: 0.4.7
4
4
  Summary: Linter package used to check Fluent files
5
5
  Home-page: https://github.com/mozilla-l10n/moz-fluent-linter
6
6
  Author: Francesco Lodolo
@@ -15,7 +15,7 @@ Classifier: Topic :: Software Development :: Localization
15
15
  Requires-Python: >=3.7
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
- Requires-Dist: fluent.syntax<0.19,>=0.18.0
18
+ Requires-Dist: fluent.syntax~=0.19.0
19
19
  Requires-Dist: pyyaml
20
20
  Requires-Dist: six
21
21
 
@@ -41,7 +41,7 @@ Using [pre-commit](https://pre-commit.com/), add this to the `.pre-commit-config
41
41
  ```yaml
42
42
  repos:
43
43
  - repo: https://github.com/mozilla-l10n/moz-fluent-linter
44
- rev: v0.4.6
44
+ rev: v0.4.7
45
45
  hooks:
46
46
  - id: fluent_linter
47
47
  files: \.ftl$
@@ -20,7 +20,7 @@ Using [pre-commit](https://pre-commit.com/), add this to the `.pre-commit-config
20
20
  ```yaml
21
21
  repos:
22
22
  - repo: https://github.com/mozilla-l10n/moz-fluent-linter
23
- rev: v0.4.6
23
+ rev: v0.4.7
24
24
  hooks:
25
25
  - id: fluent_linter
26
26
  files: \.ftl$
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = moz-fluent-linter
3
- version = 0.4.6
3
+ version = 0.4.7
4
4
  author = Francesco Lodolo
5
5
  author_email = flod@mozilla.com
6
6
  description = Linter package used to check Fluent files
@@ -23,7 +23,7 @@ package_dir =
23
23
  packages = find:
24
24
  python_requires = >=3.7
25
25
  install_requires =
26
- fluent.syntax >=0.18.0, <0.19
26
+ fluent.syntax ~= 0.19.0
27
27
  pyyaml
28
28
  six
29
29
 
@@ -0,0 +1 @@
1
+ version = "0.4.7"
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: moz-fluent-linter
3
- Version: 0.4.6
3
+ Version: 0.4.7
4
4
  Summary: Linter package used to check Fluent files
5
5
  Home-page: https://github.com/mozilla-l10n/moz-fluent-linter
6
6
  Author: Francesco Lodolo
@@ -15,7 +15,7 @@ Classifier: Topic :: Software Development :: Localization
15
15
  Requires-Python: >=3.7
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
- Requires-Dist: fluent.syntax<0.19,>=0.18.0
18
+ Requires-Dist: fluent.syntax~=0.19.0
19
19
  Requires-Dist: pyyaml
20
20
  Requires-Dist: six
21
21
 
@@ -41,7 +41,7 @@ Using [pre-commit](https://pre-commit.com/), add this to the `.pre-commit-config
41
41
  ```yaml
42
42
  repos:
43
43
  - repo: https://github.com/mozilla-l10n/moz-fluent-linter
44
- rev: v0.4.6
44
+ rev: v0.4.7
45
45
  hooks:
46
46
  - id: fluent_linter
47
47
  files: \.ftl$
@@ -0,0 +1,3 @@
1
+ fluent.syntax~=0.19.0
2
+ pyyaml
3
+ six
@@ -1 +0,0 @@
1
- version = "0.4.6"
@@ -1,3 +0,0 @@
1
- fluent.syntax<0.19,>=0.18.0
2
- pyyaml
3
- six