Skip to content

Commit

Permalink
upgrade PyYML to work around a build problem on python 3.11. (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mcgowan authored Jul 31, 2023
1 parent d5075d5 commit 044eae6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.6, 3.7, 3.8, 3.9, 3.11]

env:
DD_API_KEY: ${{ secrets.DD_API_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ future==0.18.3
iso8601==0.1.12
pyserial==3.4
python-periphery==2.3.0
PyYAML==5.4
PyYAML==6.0.1
flake8==3.8.3
pytest==7.0.1
pytest-cov==2.8.1
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Natural Language :: English",
],
install_requires=["filelock"],
python_requires='>=3.6',
)
)

0 comments on commit 044eae6

Please sign in to comment.