Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Python 3.10 #155

Merged
merged 14 commits into from
Jan 3, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: [3.8, 3.9]
python-version: [3.8, 3.9, 3.10]
bkeryan marked this conversation as resolved.
Show resolved Hide resolved
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand Down
351 changes: 268 additions & 83 deletions ni_measurement_generator/poetry.lock

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions ni_measurement_generator/poetry.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[virtualenvs]
in-project = true

[repositories]
bkeryan marked this conversation as resolved.
Show resolved Hide resolved
[repositories.test-pypi]
url = "https://test.pypi.org/legacy/"
2 changes: 1 addition & 1 deletion ni_measurement_generator/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Mako = "^1.2.1"
click = "^8.1.3"

[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest = "^6.2.5"
ni-python-styleguide = ">=0.1.9"
mypy = "^0.961"

Expand Down
72 changes: 30 additions & 42 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ protobuf = "^3.20"
pywin32 = {version = "^303", platform = "win32"}

[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest = "^6.2.5"
ni-python-styleguide = ">=0.1.9"
bkeryan marked this conversation as resolved.
Show resolved Hide resolved
# When you update the grpcio-tools version, you should update the minimum grpcio version
# and regenerate gRPC stubs.
Expand Down