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

Implement Type Hints #441

Merged
merged 37 commits into from Jan 10, 2023
Merged

Implement Type Hints #441

merged 37 commits into from Jan 10, 2023

Commits on Nov 23, 2022

  1. change Pandas DataFrame.iteritems() to DataFrame.items()

    Deprecated since version 1.5.0: iteritems is deprecated and will be removed in a future version. Use .items instead.
    martinvonk committed Nov 23, 2022
    Configuration menu
    Copy the full SHA
    38f03f5 View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2022

  1. Implement Type Hinting

    martinvonk committed Dec 27, 2022
    Configuration menu
    Copy the full SHA
    c3c3727 View commit details
    Browse the repository at this point in the history
  2. add type hints to pull request template

    remove api changes since they are generated automatically
    martinvonk committed Dec 27, 2022
    Configuration menu
    Copy the full SHA
    c7f6b1e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    accf8e0 View commit details
    Browse the repository at this point in the history
  4. resolve some issues

    martinvonk committed Dec 27, 2022
    Configuration menu
    Copy the full SHA
    00e987b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6a6ad55 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e8d52fa View commit details
    Browse the repository at this point in the history
  7. add tqdm to requirements

    martinvonk committed Dec 27, 2022
    Configuration menu
    Copy the full SHA
    6e37b42 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f488c96 View commit details
    Browse the repository at this point in the history
  9. Update recharge.py

    capital error
    martinvonk committed Dec 27, 2022
    Configuration menu
    Copy the full SHA
    8575661 View commit details
    Browse the repository at this point in the history
  10. Update modelplots.py

    martinvonk committed Dec 27, 2022
    Configuration menu
    Copy the full SHA
    3743419 View commit details
    Browse the repository at this point in the history
  11. codacy fixes

    martinvonk committed Dec 27, 2022
    Configuration menu
    Copy the full SHA
    2fd448a View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2022

  1. Update requirements.ci.txt

    numpy < 1.24, due to numba support
    martinvonk committed Dec 28, 2022
    Configuration menu
    Copy the full SHA
    705483d View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2022

  1. Update setup.py

    numpy < 1.24, due to numba support
    martinvonk committed Dec 29, 2022
    Configuration menu
    Copy the full SHA
    4b997be View commit details
    Browse the repository at this point in the history
  2. codacy fix

    update t default argument for spline response function
    martinvonk committed Dec 29, 2022
    Configuration menu
    Copy the full SHA
    de80291 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6284569 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bf548d7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b831058 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2023

  1. update type hints

    - add -> None:
    - remove unnecessary Type[ ]
    - remove unnecessary Optional[ ]
    martinvonk committed Jan 4, 2023
    Configuration menu
    Copy the full SHA
    c21a718 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2023

  1. Configuration menu
    Copy the full SHA
    aa24baa View commit details
    Browse the repository at this point in the history
  2. update imports

    martinvonk committed Jan 5, 2023
    Configuration menu
    Copy the full SHA
    fccfc69 View commit details
    Browse the repository at this point in the history
  3. rename pstFi and pstAx

    martinvonk committed Jan 5, 2023
    Configuration menu
    Copy the full SHA
    a462cd7 View commit details
    Browse the repository at this point in the history
  4. update type names

    remove pst prefix
    martinvonk committed Jan 5, 2023
    Configuration menu
    Copy the full SHA
    32c7d8b View commit details
    Browse the repository at this point in the history
  5. fix circular imports

    Define classes correctly instead of Any
    martinvonk committed Jan 5, 2023
    Configuration menu
    Copy the full SHA
    97c0c14 View commit details
    Browse the repository at this point in the history
  6. fix bug in Series name

    martinvonk committed Jan 5, 2023
    Configuration menu
    Copy the full SHA
    0026445 View commit details
    Browse the repository at this point in the history
  7. Update utils.py

    Fix duplicate import of Model for type checking
    martinvonk committed Jan 5, 2023
    Configuration menu
    Copy the full SHA
    041e5b9 View commit details
    Browse the repository at this point in the history
  8. Update requirements.rtd.txt

    try to downgrade sphinx
    martinvonk committed Jan 5, 2023
    Configuration menu
    Copy the full SHA
    7bc9653 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    1a1f711 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2023

  1. Configuration menu
    Copy the full SHA
    2d69ee8 View commit details
    Browse the repository at this point in the history
  2. Update rfunc.py

    add type hints for new hantush functions
    martinvonk committed Jan 6, 2023
    Configuration menu
    Copy the full SHA
    8324097 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2023

  1. Configuration menu
    Copy the full SHA
    65a8cfe View commit details
    Browse the repository at this point in the history
  2. Update according to @dbrakenhoff comments

    - remove None default arguments that are not needed
    - add Optional[Series] if need be
    martinvonk committed Jan 9, 2023
    Configuration menu
    Copy the full SHA
    7c9e1e8 View commit details
    Browse the repository at this point in the history
  3. rename some Pastas Types

    - rename Array_Like to ArrayLike
    - rename Tminmax to TimestampType
    martinvonk committed Jan 9, 2023
    Configuration menu
    Copy the full SHA
    d04bd68 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    db9576a View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2023

  1. replace axs and ax by axes

    martinvonk committed Jan 10, 2023
    Configuration menu
    Copy the full SHA
    a556cea View commit details
    Browse the repository at this point in the history
  2. Update 02_fix_parameters.ipynb

    typo
    martinvonk committed Jan 10, 2023
    Configuration menu
    Copy the full SHA
    bdb7c1c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    887a155 View commit details
    Browse the repository at this point in the history