Skip to content

Commit

Permalink
Version Iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
loievskyi committed Dec 21, 2023
1 parent b70c29a commit 4debe58
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10
FROM python:3.12
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
WORKDIR /code
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
async-timeout==4.0.2
packaging==21.3
pyparsing==3.0.9
redis==4.3.5
typing_extensions==4.4.0
async-timeout==4.0.3
coverage==7.3.4
packaging==23.2
pyparsing==3.1.1
redis==5.0.1
typing_extensions==4.9.0
timeout-decorator==0.5.0
coverage==7.1.0
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Internet
Topic :: Software Development
Topic :: Software Development :: Libraries :: Application Frameworks
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def read_file(file_path):

setup(
name="task_helpers",
version="1.3.2",
version="1.4.0",
url="https://github.com/loievskyi/task_helpers",
license="BSD",
description="A package for creating task helpers.",
Expand All @@ -35,6 +35,7 @@ def read_file(file_path):
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Application Frameworks",
Expand Down
2 changes: 1 addition & 1 deletion task_helpers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__title__ = "Task helpers"
__version__ = "1.3.2"
__version__ = "1.4.0"
__author__ = "Viacheslav Loievskyi"
__license__ = "BSD 3-Clause"

0 comments on commit 4debe58

Please sign in to comment.