├── .github └── dependabot.yml ├── .gitignore ├── .semaphore ├── publish-or-perish.sh └── semaphore.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── pyproject.toml ├── src └── heliclockter │ ├── __init__.py │ └── py.typed └── tests ├── __init__.py ├── assertion_test.py ├── astimezone_test.py ├── instantiation_test.py ├── mutation_test.py ├── pickling_test.py ├── pydantic_parsing_test.py ├── pydantic_serialization_test.py ├── serialization_test.py └── shared.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/.gitignore -------------------------------------------------------------------------------- /.semaphore/publish-or-perish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/.semaphore/publish-or-perish.sh -------------------------------------------------------------------------------- /.semaphore/semaphore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/.semaphore/semaphore.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/heliclockter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/src/heliclockter/__init__.py -------------------------------------------------------------------------------- /src/heliclockter/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assertion_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/tests/assertion_test.py -------------------------------------------------------------------------------- /tests/astimezone_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/tests/astimezone_test.py -------------------------------------------------------------------------------- /tests/instantiation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/tests/instantiation_test.py -------------------------------------------------------------------------------- /tests/mutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/tests/mutation_test.py -------------------------------------------------------------------------------- /tests/pickling_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/tests/pickling_test.py -------------------------------------------------------------------------------- /tests/pydantic_parsing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/tests/pydantic_parsing_test.py -------------------------------------------------------------------------------- /tests/pydantic_serialization_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/tests/pydantic_serialization_test.py -------------------------------------------------------------------------------- /tests/serialization_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/tests/serialization_test.py -------------------------------------------------------------------------------- /tests/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channable/heliclockter/HEAD/tests/shared.py --------------------------------------------------------------------------------