Skip to content

Commit

Permalink
Release-0.15.0 (#34)
Browse files Browse the repository at this point in the history
* convenient usd build comments

* update classifiers

* update ci badge

* update year on docs

* version up
  • Loading branch information
chrizzFTD authored Apr 29, 2023
1 parent 07414d7 commit b03675e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
8 changes: 4 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))

from datetime import datetime

# -- General configuration ------------------------------------------------

Expand Down Expand Up @@ -97,17 +97,17 @@

# 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
# |version| and |release|, also used in various other places throughout the
# 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.
Expand Down
10 changes: 9 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit b03675e

Please sign in to comment.