Skip to content

Commit

Permalink
Merge pull request #80 from kalaspuff/feature/python311
Browse files Browse the repository at this point in the history
Python 3.11 support
  • Loading branch information
kalaspuff authored Oct 25, 2022
2 parents a7ec61a + 48e4049 commit f553bd2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "utcnow"
version = "0.3.4"
version = "0.3.5"
description = "Timestamps as opinionated RFC 3339 (Date and Time on the Internet) formatted strings"
authors = ["Carl Oscar Aaro <[email protected]>"]
homepage = "https://github.com/kalaspuff/utcnow"
Expand All @@ -18,6 +18,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Typing :: Typed",
"License :: OSI Approved :: MIT License"
Expand Down
2 changes: 1 addition & 1 deletion utcnow/__version_data__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import Tuple, Union

__version_info__: Tuple[Union[int, str], ...] = (0, 3, 4)
__version_info__: Tuple[Union[int, str], ...] = (0, 3, 5)
__version__: str = "".join([".{}".format(str(n)) if type(n) is int else str(n) for n in __version_info__]).replace(
".", "", 1 if type(__version_info__[0]) is int else 0
)
Expand Down

0 comments on commit f553bd2

Please sign in to comment.