civics-cdf-validator 1.56.dev0__tar.gz → 1.56.dev2__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 (22) hide show
  1. {civics_cdf_validator-1.56.dev0/civics_cdf_validator.egg-info → civics_cdf_validator-1.56.dev2}/PKG-INFO +1 -1
  2. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2/civics_cdf_validator.egg-info}/PKG-INFO +1 -1
  3. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/rules.py +1 -13
  4. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/version.py +1 -1
  5. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/CONTRIBUTING.md +0 -0
  6. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/LICENSE-2.0.txt +0 -0
  7. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/MANIFEST.in +0 -0
  8. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/README.md +0 -0
  9. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/__init__.py +0 -0
  10. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/base.py +0 -0
  11. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/civics_cdf_validator.egg-info/SOURCES.txt +0 -0
  12. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/civics_cdf_validator.egg-info/dependency_links.txt +0 -0
  13. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/civics_cdf_validator.egg-info/entry_points.txt +0 -0
  14. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/civics_cdf_validator.egg-info/requires.txt +0 -0
  15. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/civics_cdf_validator.egg-info/top_level.txt +0 -0
  16. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/gpunit_rules.py +0 -0
  17. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/loggers.py +0 -0
  18. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/office_utils.py +0 -0
  19. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/setup.cfg +0 -0
  20. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/setup.py +0 -0
  21. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/stats.py +0 -0
  22. {civics_cdf_validator-1.56.dev0 → civics_cdf_validator-1.56.dev2}/validator.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: civics_cdf_validator
3
- Version: 1.56.dev0
3
+ Version: 1.56.dev2
4
4
  Summary: Checks if an election feed follows best practices
5
5
  Home-page: https://github.com/google/civics_cdf_validator
6
6
  Author: Google Civics
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: civics_cdf_validator
3
- Version: 1.56.dev0
3
+ Version: 1.56.dev2
4
4
  Summary: Checks if an election feed follows best practices
5
5
  Home-page: https://github.com/google/civics_cdf_validator
6
6
  Author: Google Civics
@@ -89,6 +89,7 @@ _EXECUTIVE_OFFICE_ROLES = frozenset([
89
89
  "state executive",
90
90
  "deputy state executive",
91
91
  "deputy head of government",
92
+ "mayor",
92
93
  ])
93
94
 
94
95
  _VALID_FEED_LONGEVITY_BY_FEED_TYPE = frozendict({
@@ -632,18 +633,6 @@ class GpUnitOcdId(base.BaseRule):
632
633
  )
633
634
 
634
635
 
635
- # TODO(b/337001513): Remove this once the new rule is rolled out everywhere and
636
- # no feeds have this in their disabled rules anymore.
637
- class ElectoralDistrictOcdId(base.BaseRule):
638
- """All GpUnits MUST have a valid OCD ID."""
639
-
640
- def elements(self):
641
- return ["ReportingUnit"]
642
-
643
- def check(self, element):
644
- pass
645
-
646
-
647
636
  class DuplicatedGpUnitOcdId(base.BaseRule):
648
637
  """2 GpUnits should not have same OCD ID."""
649
638
 
@@ -4825,7 +4814,6 @@ ELECTION_RULES = COMMON_RULES + (
4825
4814
  ElectionStartDates,
4826
4815
  ElectionTypesAndCandidateContestTypesAreCompatible,
4827
4816
  ElectionTypesAreCompatible,
4828
- ElectoralDistrictOcdId,
4829
4817
  FullTextMaxLength,
4830
4818
  FullTextOrBallotText,
4831
4819
  GpUnitsHaveSingleRoot,
@@ -5,4 +5,4 @@ No dependencies should be added to this module.
5
5
  See https://packaging.python.org/guides/single-sourcing-package-version/
6
6
  """
7
7
 
8
- __version__ = '1.56.dev0'
8
+ __version__ = '1.56.dev2'