From 795a666a748d9dffbedce8d0ccea56f3d06fd1ff Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Wed, 31 May 2023 19:21:27 -0700 Subject: [PATCH 1/7] Update conf.py --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 01ca47d..a530be3 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -145,7 +145,7 @@ latex_documents = [ # (source start file, name, description, authors, manual section). man_pages = [ (master_doc, 'pycmx', u'pycmx Documentation', - [author], 1) + [author], "3p") ] From cc371cd4860f48a7421c2b71296f2c4d65676a12 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Wed, 8 Nov 2023 08:13:42 -0800 Subject: [PATCH 2/7] Update python-package.yml Added 3.12 to test matrix --- .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 35d58e0..194862b 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.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 From 8e8d4f5753359fa54f605297dd2513f0ebabad1c Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Wed, 8 Nov 2023 08:14:57 -0800 Subject: [PATCH 3/7] Update pyproject.toml Added 3.12 classifier --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a66e9d5..5de6421 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,8 @@ classifiers = [ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', - 'Programming Language :: Python :: 3.11' + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12' ] dependencies = [ From 3187a50a6be5454b9cce6bc76c03265d9d75f396 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Wed, 8 Nov 2023 08:15:26 -0800 Subject: [PATCH 4/7] Update pyproject.toml --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5de6421..7a0e2f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,6 @@ classifiers = [ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', - 'Programming Language :: Python :: 3.12' ] dependencies = [ From d79fdcc6a8ada5979d7c44bec04adb160b18e57d Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Wed, 8 Nov 2023 08:15:47 -0800 Subject: [PATCH 5/7] Update pyproject.toml Added Python 3.12 classifier --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a66e9d5..5de6421 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,8 @@ classifiers = [ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', - 'Programming Language :: Python :: 3.11' + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12' ] dependencies = [ From daa5d58a66ba9e764ad01094f7ba4b182ba3bed7 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Wed, 8 Nov 2023 10:02:24 -0800 Subject: [PATCH 6/7] Create .readthedocs.yaml --- .readthedocs.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..701a70a --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,32 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-20.04 + tools: + python: "3.10" + # You can also specify other tool versions: + # nodejs: "16" + # rust: "1.55" + # golang: "1.17" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/source/conf.py + +#If using Sphinx, optionally build your docs in additional formats such as PDF +formats: + - pdf + +#Optionally declare the Python requirements required to build your docs +python: + install: + - method: pip + path: . + extra_requirements: + - doc From ce1a0d32bbc349f905f9819527a2114e0688fea2 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Wed, 8 Nov 2023 10:10:08 -0800 Subject: [PATCH 7/7] Update __init__.py Nudged version to 1.2.2 --- pycmx/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pycmx/__init__.py b/pycmx/__init__.py index 80e4951..fde3f9c 100644 --- a/pycmx/__init__.py +++ b/pycmx/__init__.py @@ -7,7 +7,7 @@ copy and reuse this software, refer to the LICENSE file included with the distribution. """ -__version__ = '1.2.1' +__version__ = '1.2.2' from .parse_cmx_events import parse_cmx3600 from .transition import Transition