Skip to content

Commit

Permalink
chore: poetry update (#1481)
Browse files Browse the repository at this point in the history
* chore: poetry update

* chore: update respx dependency

* chore: update black and mypy

* chore: update tests to match client changes

* chore: pin numpy dep to fix type issues

* chore: fix lint errors

* chore: remove cast

* chore: instll mypy types

* chore: add types to dependencies

* chore: add type deps to lockfile

* chore: fix tests mocks

* chore: try update sphinx

* chore: revert error tolerance and change language to english

* chore: fix sphinx issues

* chore: revert sphinx update

* chore: relax numpy version and fix type errors
  • Loading branch information
jselig-rigetti committed Oct 3, 2022
1 parent ca7bcf5 commit 2cad2da
Show file tree
Hide file tree
Showing 26 changed files with 732 additions and 1,171 deletions.
6 changes: 5 additions & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ ignore_missing_imports = True
# Enable options equivalent to the --strict command line arg
warn_unused_configs = True
disallow_subclassing_any = True
disallow_any_generics = True

# numpy expects generic arguments for `numpy.ndarray` that default
# to `typing.Any` and we use those defaults all over the place.
disallow_any_generics = False

disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
Expand Down
Loading

0 comments on commit 2cad2da

Please sign in to comment.