Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Installation
Prerequisites
-------------

* Python 3.10+
* Python 3.11+
* A UNIX-like environment (e.g. MacOS, WSL, Ubuntu)
* A recent version of PostgreSQL (ideally at least 11+)

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ classifiers = [
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10"
requires-python = ">=3.11"
description = "Common Operation on Lots of Sequences Tool"
license = {file = "LICENSE"}
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion src/cool_seq_tool/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from cool_seq_tool import __version__

_now = str(datetime.datetime.now(tz=datetime.timezone.utc))
_now = str(datetime.datetime.now(tz=datetime.UTC))


class AnnotationLayer(str, Enum):
Expand Down
2 changes: 1 addition & 1 deletion src/cool_seq_tool/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def service_meta() -> ServiceMeta:
"""
return ServiceMeta(
version=__version__,
response_datetime=datetime.datetime.now(tz=datetime.timezone.utc),
response_datetime=datetime.datetime.now(tz=datetime.UTC),
)


Expand Down