mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-06 11:09:57 -08:00
54c9214b03
* Bump apscheduler from 3.8.0 to 3.9.1 Bumps [apscheduler](https://github.com/agronholm/apscheduler) from 3.8.0 to 3.9.1. - [Release notes](https://github.com/agronholm/apscheduler/releases) - [Changelog](https://github.com/agronholm/apscheduler/blob/3.9.1/docs/versionhistory.rst) - [Commits](https://github.com/agronholm/apscheduler/compare/3.8.0...3.9.1) --- updated-dependencies: - dependency-name: apscheduler dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update apscheduler==3.9.1 * Update pytz==2022.1 * Add pytz-deprecation-shim==0.1.0.post0 * Update tzdata==2022.1 * Update tzlocal==4.2 * Update requirements.txt Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
16 lines
458 B
Python
16 lines
458 B
Python
import sys
|
|
|
|
if sys.version_info[0] == 2:
|
|
from . import _compat_py2 as _compat_impl
|
|
else:
|
|
from . import _compat_py3 as _compat_impl
|
|
|
|
UTC = _compat_impl.UTC
|
|
get_timezone = _compat_impl.get_timezone
|
|
get_timezone_file = _compat_impl.get_timezone_file
|
|
get_fixed_offset_zone = _compat_impl.get_fixed_offset_zone
|
|
is_ambiguous = _compat_impl.is_ambiguous
|
|
is_imaginary = _compat_impl.is_imaginary
|
|
enfold = _compat_impl.enfold
|
|
get_fold = _compat_impl.get_fold
|