Skip to content

Commit 77b6151

Browse files
committed
Fix an issue with missing protobuf dependency.
Google's protobuf runtime library was present in requirements.txt but not in setup.cfg, so installs of this package wouldn't correctly install protobuf as a dependency.
1 parent d3829d5 commit 77b6151

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
**/__pycache__
44
.python-version
55
*.egg-info/
6-
dist/
6+
dist/
7+
build/

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
protobuf==3.19.1
1+
protobuf>=3.19
22
pytest==6.2.5

setup.cfg

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[metadata]
44
name = yarnrunner-python
5-
version = 0.2.2
5+
version = 0.2.3
66
author = Sam Weaver
77
author_email = sweaver@relaypro.com
88
description = An unofficial Python interpreter for compiled Yarn Spinner programs.
@@ -16,4 +16,6 @@ classifiers =
1616

1717
[options]
1818
packages = yarnrunner_python
19-
python_requires = >=3.6
19+
python_requires = >=3.6
20+
install_requires =
21+
protobuf >= 3.19

0 commit comments

Comments
 (0)