From 5785dc33646598921a0040f660cda79800f56e20 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Fri, 21 Jul 2023 12:51:12 -0700 Subject: [PATCH 1/3] Update pyproject.toml Requires Python 3.8 --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 49f2427..fcdd56b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,6 @@ classifiers = [ 'License :: OSI Approved :: MIT License', 'Topic :: Multimedia', 'Topic :: Multimedia :: Sound/Audio', - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -21,7 +20,7 @@ classifiers = [ "Development Status :: 5 - Production/Stable", "Topic :: Text Processing :: Filters" ] -requires-python = ">=3.7" +requires-python = ">=3.8" dynamic = ["version", "description"] keywords = ["text-processing", "parsers", "film", "broadcast", "editing", "editorial"] From 79d8cc5b694b77d6ae808956c5dc3993d7addcb2 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Fri, 21 Jul 2023 12:53:43 -0700 Subject: [PATCH 2/3] Update python-package.yml --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 12328e2..bbd1660 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] + python-version: [3.8, 3.9, "3.10", "3.11"] steps: - uses: actions/checkout@v2.5.0 From 2a9895488578731b9770ba2e51cdc30f04abed83 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Fri, 21 Jul 2023 12:56:13 -0700 Subject: [PATCH 3/3] Update __init__.py --- ptulsconv/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ptulsconv/__init__.py b/ptulsconv/__init__.py index d62841c..36aa627 100644 --- a/ptulsconv/__init__.py +++ b/ptulsconv/__init__.py @@ -2,7 +2,7 @@ Parse and convert Pro Tools text exports """ -__version__ = '1.1.0' +__version__ = '2.0.0' __author__ = 'Jamie Hardt' __license__ = 'MIT' __copyright__ = "%s %s (c) 2023 %s. All rights reserved." % (__name__, __version__, __author__)