Skip to content

Commit

Permalink
Fix required Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle-Verhoog committed Sep 16, 2021
1 parent bab7bd1 commit 80e1723
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions releasenotes/notes/python-support-1c447acc4607abc7.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
fixes:
- |
Specify required Python version to >=3.8. It was mistakenly set to >=3.7
in setup.py.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
license="BSD 3",
packages=find_packages(exclude=["tests*"]),
package_data={"ddapm_test_agent": ["py.typed"]},
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=[
"aiohttp",
"msgpack",
Expand Down

0 comments on commit 80e1723

Please sign in to comment.