airportsdata 20250706__py3-none-any.whl → 20250909__py3-none-any.whl

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.
airportsdata/__init__.py CHANGED
@@ -3,6 +3,7 @@
3
3
  """
4
4
  Extensive database of location and timezone data for nearly every airport and landing strip in the world.
5
5
  """
6
+
6
7
  from __future__ import annotations
7
8
 
8
9
  import csv
@@ -11,7 +12,7 @@ from typing import Dict, Literal, TypedDict
11
12
 
12
13
  __project_name__ = __package__
13
14
  __min_python_version__ = (3, 10) # minimum version of Python required to run; supported until October 2025
14
- __version__ = '20250706' # numbering follows the release date
15
+ __version__ = '20250909' # numbering follows the release date
15
16
  __author__ = 'Mike Borsetti <mike@borsetti.com>'
16
17
  __copyright__ = 'Copyright 2020- Mike Borsetti'
17
18
  __license__ = 'MIT'