Skip to content

Commit

Permalink
Bump version to 0.0.3
Browse files Browse the repository at this point in the history
Also bump minimal python version to 3.8 since we use f-string formatting (Py3.6+) and walrus operator (Py3.8+) in `pyproject.toml`
  • Loading branch information
BigRoy committed Dec 4, 2023
1 parent 4bb4fbe commit a8492f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ authors = [
]
description = "Python Qt components for building custom USD tools."
readme = "README.md"
requires-python = ">=3.4"
requires-python = ">=3.8"
keywords = ["usd", "qt"]
license = { file = "LICENSE" }
classifiers = [
Expand All @@ -23,9 +23,9 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
'importlib-metadata; python_version<"3.7"', "qtpy"
"qtpy"
]
version = "0.0.2"
version = "0.0.3"

[project.optional-dependencies]
usd = ["usd-core"]
Expand Down
2 changes: 1 addition & 1 deletion usd_qtpy/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
"""Package declaring usd_qtpy version."""
__version__ = "0.0.2"
__version__ = "0.0.3"

0 comments on commit a8492f3

Please sign in to comment.