Skip to content
Open
Show file tree
Hide file tree
Changes from all 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/pypipublish_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python -m pip install --upgrade pip
python -m pip install setuptools wheel twine auditwheel
- name: Setup msbuild
uses: microsoft/setup-msbuild@v1.0.0
uses: microsoft/setup-msbuild@v1.0.2
- name: Setup Bazel
uses: abhinavsingh/setup-bazel@v3
- name: Build PyDP
Expand Down
2 changes: 1 addition & 1 deletion examples/Tutorial_2-restaurant_demo/restaurant.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pydp as dp # type: ignore
from pydp.algorithms.laplacian import BoundedSum, Count # type: ignore
from pydp.algorithms.laplacian import BoundedSum, Count #

import math
import statistics as s
Expand Down
4 changes: 2 additions & 2 deletions tests/algorithms/test_bounded_mean.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import pytest
from pydp.algorithms.laplacian import BoundedMean
from pydp._pydp import Summary
from pydp.algorithms.laplacian import BoundedMean # type: ignore
from pydp._pydp import Summary # type: ignore


expect_near = lambda expected, actual, tol: (
Expand Down
8 changes: 4 additions & 4 deletions tests/algorithms/test_distributions.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import pytest
from pydp.distributions import (
LaplaceDistribution,
GaussianDistribution,
GeometricDistribution,
)
LaplaceDistribution, # type: ignore
GaussianDistribution, # type: ignore
GeometricDistribution, # type: ignore
)
import pydp as dp
import math
from typing import List
Expand Down
2 changes: 1 addition & 1 deletion tests/algorithms/test_rand.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pytest
from pydp.util import Geometric, UniformDouble
from pydp.util import Geometric, UniformDouble # type: ignore


def test_rand_UniformDouble():
Expand Down