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

switch to modulegraph 2 #5808

Draft
wants to merge 174 commits into
base: develop
Choose a base branch
from
Draft

switch to modulegraph 2 #5808

wants to merge 174 commits into from

Commits on Dec 31, 2018

  1. Configuration menu
    Copy the full SHA
    767a112 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2c53da4 View commit details
    Browse the repository at this point in the history
  3. Test public API symbols

    This adds tests for names available as public symbols
    in the modulegraph2 namespace.
    
    This also removes all incomplete and untested symbols
    from the public API (will be added back when I'm
    happy about the implementation)
    ronaldoussoren committed Dec 31, 2018
    Configuration menu
    Copy the full SHA
    3176bb7 View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2019

  1. Add internal API for extracting information about imports from an AST

    Including full tests. The code doesn't use ast.NodeVisitor to avoid
    running out of stack space.
    ronaldoussoren committed Jan 1, 2019
    Configuration menu
    Copy the full SHA
    4560486 View commit details
    Browse the repository at this point in the history
  2. Add bytecode scanner with tests

    The tests have 100% test coverage according to coverage.py,
    but I haven't checked yet if there is sufficent testing.
    ronaldoussoren committed Jan 1, 2019
    Configuration menu
    Copy the full SHA
    e12bafd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    901f1f3 View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2019

  1. Configuration menu
    Copy the full SHA
    06131d5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2462aa8 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2019

  1. Configuration menu
    Copy the full SHA
    efbfccb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ffd469d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    371e85c View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2019

  1. Configuration menu
    Copy the full SHA
    50c0883 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ae0e4ae View commit details
    Browse the repository at this point in the history
  3. Fix import

    ronaldoussoren committed Jan 6, 2019
    Configuration menu
    Copy the full SHA
    fc92808 View commit details
    Browse the repository at this point in the history
  4. Graphbuilder work

    ronaldoussoren committed Jan 6, 2019
    Configuration menu
    Copy the full SHA
    08151f8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3f9c494 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    76d8e40 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3856c9e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    07eed46 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    5bb01a8 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2019

  1. Configuration menu
    Copy the full SHA
    c9d0a72 View commit details
    Browse the repository at this point in the history
  2. TODO updates

    ronaldoussoren committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    e9a0723 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2019

  1. Further test updates, with small changes to the code to match

    One thing I don't quite like is a spurious return statement that's
    needed to keep coverage.py happy.
    ronaldoussoren committed Jan 9, 2019
    Configuration menu
    Copy the full SHA
    7244e94 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2019

  1. This should finish the code for absolute imports

    I'm not happy about the naming in modulegraph._depproc, and
    the global function '_process_namelist' (this should be a method
    given its close interaction with ModuleGraph)
    ronaldoussoren committed Jan 13, 2019
    Configuration menu
    Copy the full SHA
    1f393b9 View commit details
    Browse the repository at this point in the history
  2. Add some more TODOs

    ronaldoussoren committed Jan 13, 2019
    Configuration menu
    Copy the full SHA
    24253f7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2b87f21 View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2019

  1. More updates

    ronaldoussoren committed Jan 15, 2019
    Configuration menu
    Copy the full SHA
    13c31c1 View commit details
    Browse the repository at this point in the history
  2. Documentation updates

    ronaldoussoren committed Jan 15, 2019
    Configuration menu
    Copy the full SHA
    fe4fbe0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a112497 View commit details
    Browse the repository at this point in the history
  4. Dotfile update

    ronaldoussoren committed Jan 15, 2019
    Configuration menu
    Copy the full SHA
    4d27bb0 View commit details
    Browse the repository at this point in the history
  5. Fun with dot export

    The actual export is less interesting, graphs get complex very fast...
    ronaldoussoren committed Jan 15, 2019
    Configuration menu
    Copy the full SHA
    87058b1 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2019

  1. When a lot of names are defined in a module the bytecode for an impor…

    …t statement is slightly different
    ronaldoussoren committed Jan 16, 2019
    Configuration menu
    Copy the full SHA
    f2e619b View commit details
    Browse the repository at this point in the history
  2. First stab at handling relative imports

    This needs a lot more testing, as well as checking
    if the code doesn't do to much work (instead of using
    importlib functionality)
    ronaldoussoren committed Jan 16, 2019
    Configuration menu
    Copy the full SHA
    c4c86b0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a85e6ff View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2019

  1. Further updates

    ronaldoussoren committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    775891e View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2019

  1. Configuration menu
    Copy the full SHA
    86f14e8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5204936 View commit details
    Browse the repository at this point in the history
  3. Some codestyle work

    ronaldoussoren committed Jan 19, 2019
    Configuration menu
    Copy the full SHA
    48e07c1 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2019

  1. More work, including initial attempt at supporting "six.moves".

    Six.moves support does not work properly at this point, which
    may sadly enough be a bug in the rest of the code...
    ronaldoussoren committed Jan 20, 2019
    Configuration menu
    Copy the full SHA
    2fdbc7f View commit details
    Browse the repository at this point in the history
  2. More progress on support for six.moves

    This is mostly handling error cases, six.moves support is
    not complete yet.
    ronaldoussoren committed Jan 20, 2019
    Configuration menu
    Copy the full SHA
    8bd7710 View commit details
    Browse the repository at this point in the history
  3. Code cleanup

    ronaldoussoren committed Jan 20, 2019
    Configuration menu
    Copy the full SHA
    404b280 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2019

  1. Configuration menu
    Copy the full SHA
    6a5811e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fc66bed View commit details
    Browse the repository at this point in the history
  3. Change _process_namelist into method

    This was initialy a function because I hoped to move this
    to a different module. Can't be done because this uses internal
    APIs for the graph.
    ronaldoussoren committed Jan 22, 2019
    Configuration menu
    Copy the full SHA
    065f114 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bec8d40 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2019

  1. 1) Rewrite HTML builder, this now generates a simular report as in mo…

    …dulegraph
    
    2) Fix incorrect value in the STDLIB_IMPLIES dictionary
    
    3) Add testcase that validates the STDLIB_IMPLIES dictionary
    ronaldoussoren committed Jan 23, 2019
    Configuration menu
    Copy the full SHA
    0be93e6 View commit details
    Browse the repository at this point in the history
  2. * Fix typing error in "all_distributions"

    * Add support for SWIG (untested)
    * Update missing_hook to make the SWIG hook possible
    * Add function "distribution_named"
    ronaldoussoren committed Jan 23, 2019
    Configuration menu
    Copy the full SHA
    63f4316 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4b197a2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9595639 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2019

  1. Testing updates.

    ronaldoussoren committed Jan 24, 2019
    Configuration menu
    Copy the full SHA
    9cfddc5 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2019

  1. Configuration menu
    Copy the full SHA
    f8cdc8d View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2019

  1. Configuration menu
    Copy the full SHA
    3bc4c52 View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2019

  1. Finish support for SWIG

    One case is not yet handled: The SWIG generated file as
    a package __init__. I don't know if that's actually used though.
    ronaldoussoren committed Jan 27, 2019
    Configuration menu
    Copy the full SHA
    81fbb3d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fc92aa2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4f7914c View commit details
    Browse the repository at this point in the history
  4. Documentation updates

    - Document the command-line interface
    - Remove objectgraph documentation
    - Make sure documentation builds again
    ronaldoussoren committed Jan 27, 2019
    Configuration menu
    Copy the full SHA
    7718882 View commit details
    Browse the repository at this point in the history
  5. Add documentation

    ronaldoussoren committed Jan 27, 2019
    Configuration menu
    Copy the full SHA
    ece5437 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2019

  1. Various updates

    ronaldoussoren committed Jan 28, 2019
    Configuration menu
    Copy the full SHA
    a961392 View commit details
    Browse the repository at this point in the history
  2. Test updates

    - Test coverage for _depproc
    - Rewrite _implies to avoid conditional statements
    - Update test_distributions for the incompatiblity between
      current versions of wheel and pip
    ronaldoussoren committed Jan 28, 2019
    Configuration menu
    Copy the full SHA
    5c920f5 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2019

  1. Configuration menu
    Copy the full SHA
    146ea11 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    632cd00 View commit details
    Browse the repository at this point in the history
  3. Add test for submodule import when package init has syntax error

    ... and fix the error this test causes
    ronaldoussoren committed Jan 29, 2019
    Configuration menu
    Copy the full SHA
    ebc4199 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    962d8b5 View commit details
    Browse the repository at this point in the history
  5. More fixes

    ronaldoussoren committed Jan 29, 2019
    Configuration menu
    Copy the full SHA
    6acad2e View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2019

  1. Configuration menu
    Copy the full SHA
    c0a91ec View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2019

  1. Configuration menu
    Copy the full SHA
    26dd102 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    df43ffe View commit details
    Browse the repository at this point in the history
  3. Code cleanup

    * Move utility definitions from _modulegraph2 to _utilities
    
    * The method _run_post_processing is not necessary, inline in
      the single caller.
    
    * Merge common codes for absolute and relative imports
      in _process_import
    ronaldoussoren committed Jan 31, 2019
    Configuration menu
    Copy the full SHA
    fec2e90 View commit details
    Browse the repository at this point in the history
  4. Test coverage hacks...

    1) Dotbuilder is currently not sufficiently generic, make
       function attributes non-optional to get optimal code coverage
       without full testing
    
    2) Tweak the default graph for test_commandline to cover all
       code paths during HTML generation
    
    In both cases a generic graph exporter is needed with tests,
    which is then used by modulegraph.
    ronaldoussoren committed Jan 31, 2019
    Configuration menu
    Copy the full SHA
    072ed0c View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2019

  1. Configuration menu
    Copy the full SHA
    d370ebf View commit details
    Browse the repository at this point in the history
  2. Update license text

    ronaldoussoren committed Feb 2, 2019
    Configuration menu
    Copy the full SHA
    19721f6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b4fa5c9 View commit details
    Browse the repository at this point in the history
  4. Add support for "as" clauses in import statement

    The "as" clauses are only parsed for modules with available
    source code, not for modules that only have byte code.
    ronaldoussoren committed Feb 2, 2019
    Configuration menu
    Copy the full SHA
    dba0fde View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    cac153d View commit details
    Browse the repository at this point in the history
  6. Tweak the SWIG recipe

    With this change having a SWIG wrapper as __init__.py should
    work correctly (even though it is unlike that anyone will do this)
    ronaldoussoren committed Feb 2, 2019
    Configuration menu
    Copy the full SHA
    7c5d33d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3a1eaf7 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    570c19f View commit details
    Browse the repository at this point in the history
  9. Update version

    ronaldoussoren committed Feb 2, 2019
    Configuration menu
    Copy the full SHA
    f20a1ca View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    9227fa8 View commit details
    Browse the repository at this point in the history
  11. Update index page

    ronaldoussoren committed Feb 2, 2019
    Configuration menu
    Copy the full SHA
    d7de73f View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    104a3e1 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    2c16d38 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    d71b965 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    155e4b8 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    5826932 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    acfdcbd View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    f9e1062 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    aa60ba3 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    b23513f View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    2c6f941 View commit details
    Browse the repository at this point in the history
  22. Change release date

    ronaldoussoren committed Feb 2, 2019
    Configuration menu
    Copy the full SHA
    2f16372 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    182275f View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2019

  1. Configuration menu
    Copy the full SHA
    eeb69b1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0363a4a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    515e6f9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ff2a095 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    553f23f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3b2bfc5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1c16376 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    7bdf508 View commit details
    Browse the repository at this point in the history
  9. Test fixes for python 3.6

    Also enables python3.6 testing by default in tox.ini
    ronaldoussoren committed Feb 3, 2019
    Configuration menu
    Copy the full SHA
    817ff9f View commit details
    Browse the repository at this point in the history
  10. Updated comments

    ronaldoussoren committed Feb 3, 2019
    Configuration menu
    Copy the full SHA
    49e5418 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    58f17c1 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    7b247a9 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    49932db View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    24b750f View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    0f88fc6 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    9161747 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    07cf9ed View commit details
    Browse the repository at this point in the history
  18. Another attempt at fixing test failures on Windows

    (Debugging through appveyor builds)
    ronaldoussoren committed Feb 3, 2019
    Configuration menu
    Copy the full SHA
    49605ca View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    dace578 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    5117e6e View commit details
    Browse the repository at this point in the history
  21. More windows support

    ronaldoussoren committed Feb 3, 2019
    Configuration menu
    Copy the full SHA
    437cab9 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    747da82 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    1a63beb View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    8c0b683 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    559c63d View commit details
    Browse the repository at this point in the history
  26. Debug windows

    ronaldoussoren committed Feb 3, 2019
    Configuration menu
    Copy the full SHA
    b06a986 View commit details
    Browse the repository at this point in the history
  27. Debug windows

    ronaldoussoren committed Feb 3, 2019
    Configuration menu
    Copy the full SHA
    cdd77e3 View commit details
    Browse the repository at this point in the history
  28. Remove dead code

    ronaldoussoren committed Feb 3, 2019
    Configuration menu
    Copy the full SHA
    5f8382e View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    d55bbaf View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    e7db903 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    e446d22 View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    08a8c39 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2019

  1. Update changelog

    ronaldoussoren committed Feb 4, 2019
    Configuration menu
    Copy the full SHA
    cbe4d2f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e78a8aa View commit details
    Browse the repository at this point in the history
  3. Version update

    ronaldoussoren committed Feb 4, 2019
    Configuration menu
    Copy the full SHA
    429e589 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7c894a7 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2019

  1. Configuration menu
    Copy the full SHA
    a9aaed6 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2019

  1. Configuration menu
    Copy the full SHA
    fa686c3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    83dd8b7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1225494 View commit details
    Browse the repository at this point in the history
  4. Add sitemap

    ronaldoussoren committed Apr 12, 2019
    Configuration menu
    Copy the full SHA
    308e863 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2020

  1. Configuration menu
    Copy the full SHA
    15b8f4e View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2020

  1. Small tweaks

    ronaldoussoren committed Jan 14, 2020
    Configuration menu
    Copy the full SHA
    b94cdbb View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2020

  1. Configuration menu
    Copy the full SHA
    86c6392 View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2020

  1. Configuration menu
    Copy the full SHA
    f19c0d8 View commit details
    Browse the repository at this point in the history
  2. Tweak CI configuration

    ronaldoussoren committed Jan 21, 2020
    Configuration menu
    Copy the full SHA
    4d3662d View commit details
    Browse the repository at this point in the history
  3. Fix typo in readme

    ronaldoussoren committed Jan 21, 2020
    Configuration menu
    Copy the full SHA
    2d31bd6 View commit details
    Browse the repository at this point in the history
  4. Tweak readme

    ronaldoussoren committed Jan 21, 2020
    Configuration menu
    Copy the full SHA
    6cc858a View commit details
    Browse the repository at this point in the history
  5. Tweak README

    ronaldoussoren committed Jan 21, 2020
    Configuration menu
    Copy the full SHA
    3c71aa0 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2020

  1. Update test.yml

    Don't test with python 3.5
    ronaldoussoren committed Jan 24, 2020
    Configuration menu
    Copy the full SHA
    dfd3f63 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2020

  1. Fix URL in Readme

    htgoebel committed May 10, 2020
    Configuration menu
    Copy the full SHA
    ce6667c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    283b03d View commit details
    Browse the repository at this point in the history

Commits on May 13, 2020

  1. Merge pull request pyinstaller#7 from htgoebel/master

    Fix some links
    ronaldoussoren committed May 13, 2020
    Configuration menu
    Copy the full SHA
    558cd12 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2020

  1. Configuration menu
    Copy the full SHA
    fd8ed8f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2be4d93 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2020

  1. Fix typo in ReadMe.txt

    ronaldoussoren committed Jul 26, 2020
    Configuration menu
    Copy the full SHA
    793a1ca View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2020

  1. Configuration menu
    Copy the full SHA
    b577535 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2020

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

Commits on Oct 6, 2020

  1. Add missing files

    ronaldoussoren committed Oct 6, 2020
    Configuration menu
    Copy the full SHA
    05fc9bb View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2020

  1. Configuration menu
    Copy the full SHA
    b97c19a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f3f6a93 View commit details
    Browse the repository at this point in the history
  3. Typo in comment

    ronaldoussoren committed Oct 11, 2020
    Configuration menu
    Copy the full SHA
    34515fe View commit details
    Browse the repository at this point in the history
  4. black changes

    ronaldoussoren committed Oct 11, 2020
    Configuration menu
    Copy the full SHA
    54343fc View commit details
    Browse the repository at this point in the history
  5. Fix issue in test case

    ronaldoussoren committed Oct 11, 2020
    Configuration menu
    Copy the full SHA
    64be3d5 View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2021

  1. Add pre-commit configuration and fix some issues found

    There's still a test failure in a test method that
    was hidden by a test with the same name, I haven't
    investigated yet what's going on here.
    ronaldoussoren committed Jan 3, 2021
    Configuration menu
    Copy the full SHA
    cd43019 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2021

  1. Configuration menu
    Copy the full SHA
    fbfc4d4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3e115b3 View commit details
    Browse the repository at this point in the history
  3. ci: update actions-pytest

    xoviat committed Apr 8, 2021
    Configuration menu
    Copy the full SHA
    24db0d1 View commit details
    Browse the repository at this point in the history
  4. ci: fix version

    xoviat committed Apr 8, 2021
    Configuration menu
    Copy the full SHA
    ecdb887 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2fe4d07 View commit details
    Browse the repository at this point in the history
  6. setup: add dependencies

    xoviat committed Apr 8, 2021
    Configuration menu
    Copy the full SHA
    a01a276 View commit details
    Browse the repository at this point in the history
  7. fixup

    xoviat committed Apr 8, 2021
    Configuration menu
    Copy the full SHA
    8d74105 View commit details
    Browse the repository at this point in the history
  8. fixup

    xoviat committed Apr 8, 2021
    Configuration menu
    Copy the full SHA
    8330dba View commit details
    Browse the repository at this point in the history

Commits on May 6, 2021

  1. Configuration menu
    Copy the full SHA
    fdd0f0d View commit details
    Browse the repository at this point in the history
  2. fixup

    xoviat committed May 6, 2021
    Configuration menu
    Copy the full SHA
    a14e1ee View commit details
    Browse the repository at this point in the history
  3. fixup

    xoviat committed May 6, 2021
    Configuration menu
    Copy the full SHA
    69330a4 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2021

  1. fixup

    xoviat committed May 7, 2021
    Configuration menu
    Copy the full SHA
    6b0f9ea View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f926e45 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1d6baad View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e68df0f View commit details
    Browse the repository at this point in the history
  5. fixup

    xoviat committed May 7, 2021
    Configuration menu
    Copy the full SHA
    8601b16 View commit details
    Browse the repository at this point in the history
  6. fixup

    xoviat committed May 7, 2021
    Configuration menu
    Copy the full SHA
    1cb2c2c View commit details
    Browse the repository at this point in the history