Skip to content

Commit

Permalink
Fix an issue with missing protobuf dependency.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
weaversam8 committed Feb 21, 2022
1 parent d3829d5 commit 77b6151
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
**/__pycache__
.python-version
*.egg-info/
dist/
dist/
build/
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
protobuf==3.19.1
protobuf>=3.19
pytest==6.2.5
6 changes: 4 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[metadata]
name = yarnrunner-python
version = 0.2.2
version = 0.2.3
author = Sam Weaver
author_email = [email protected]
description = An unofficial Python interpreter for compiled Yarn Spinner programs.
Expand All @@ -16,4 +16,6 @@ classifiers =

[options]
packages = yarnrunner_python
python_requires = >=3.6
python_requires = >=3.6
install_requires =
protobuf >= 3.19

0 comments on commit 77b6151

Please sign in to comment.