From b03675e36a6e55d3413f20a64a61c5b43ea9a9e2 Mon Sep 17 00:00:00 2001 From: chrizzftd Date: Sun, 30 Apr 2023 08:02:01 +1000 Subject: [PATCH] Release-0.15.0 (#34) * convenient usd build comments * update classifiers * update ci badge * update year on docs * version up --- README.md | 2 +- docs/source/conf.py | 8 ++++---- setup.cfg | 10 +++++++++- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5016920e..82fab71b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # 👨‍🍳 The Grill -[![Build Status](https://travis-ci.org/thegrill/grill.svg?branch=main)](https://travis-ci.org/thegrill/grill) +[![Python CI](https://github.com/thegrill/grill/actions/workflows/python-package.yml/badge.svg)](https://github.com/thegrill/grill/actions/workflows/python-package.yml) [![codecov](https://codecov.io/gh/thegrill/grill/branch/main/graph/badge.svg)](https://codecov.io/gh/thegrill/grill) [![Documentation Status](https://readthedocs.org/projects/grill/badge/?version=latest)](https://grill.readthedocs.io/en/latest/?badge=latest) [![PyPI version](https://badge.fury.io/py/grill.svg)](https://badge.fury.io/py/grill) diff --git a/docs/source/conf.py b/docs/source/conf.py index fdd66b54..a4fb591e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -20,7 +20,7 @@ # import os # import sys # sys.path.insert(0, os.path.abspath('.')) - +from datetime import datetime # -- General configuration ------------------------------------------------ @@ -97,7 +97,7 @@ # General information about the project. project = 'grill' -copyright = '2017, The Grill' +copyright = f'{datetime.now().year}, The Grill' author = 'The Grill' # The version info for the project you're documenting, acts as replacement for @@ -105,9 +105,9 @@ # built documents. # # The short X.Y version. -version = '0.13' +version = '0.15' # The full version, including alpha/beta/rc tags. -release = '0.13.0' +release = '0.15.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index cb867730..7f2c953e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = grill -version = 0.14.0 +version = 0.15.0 description = Pipeline tools for (but not limited to) audiovisual projects. long_description = file: README.md long_description_content_type = text/markdown @@ -10,6 +10,7 @@ author = Christian López Barrón url = https://github.com/thegrill/grill classifiers = Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 [options] install_requires = grill-names>=2.6.0; networkx; pygraphviz; numpy @@ -20,6 +21,13 @@ packages = find_namespace: include = grill.* [options.extras_require] +# USD build: +# conda create -n py311usd2305build python=3.11 +# conda activate py311usd2305build +# conda install -c conda-forge cmake=3.26 +# python -m pip install PySide6 PyOpenGL jinja2 +# conda install -c rdonnelly vs2019_win-64 +# # use a custom version of sphinx to workaround https://github.com/thegrill/grill-names/issues/6 # python -m pip install -U git+https://github.com/thegrill/sphinx.git@grill-intersphinx-uniqueref-fix # For a dev install: