Skip to content

Commit

Permalink
Recover support since Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
cachitas committed Apr 8, 2024
1 parent ac5895e commit 6fe14e1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "stringx"
description = "STRING DB API Client"
authors = [{ name = "Hugo Cachitas", email = "hcachitas@gmail.com" }]
dependencies = ["httpx>=0.27.0"]
requires-python = ">=3.10"
requires-python = ">=3.9"
readme = "README.md"
keywords = [
"string",
Expand All @@ -32,10 +32,10 @@ classifiers = [
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
# "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
# "Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Typing :: Typed",
Expand Down
2 changes: 2 additions & 0 deletions src/stringx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
STRING API client using httpx.
"""

from __future__ import annotations # required in Python 3.9

import typing

from .client import Client, __version__
Expand Down
2 changes: 2 additions & 0 deletions src/stringx/client.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations # required in Python 3.9

import logging

import httpx
Expand Down

0 comments on commit 6fe14e1

Please sign in to comment.