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

Migration to Python3 #3616

Open
wants to merge 211 commits into
base: main
Choose a base branch
from
Open

Migration to Python3 #3616

wants to merge 211 commits into from

Commits on Feb 17, 2023

  1. Add Python 3 to Github Actions

    willgearty authored and milescalabresi committed Feb 17, 2023
    Configuration menu
    Copy the full SHA
    c6bdf4d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    72bcb56 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    522ffa4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    31ef34b View commit details
    Browse the repository at this point in the history
  5. run python-modernize

    full command/config: python -m modernize --no-diffs --write --nobackups --six-unicode --enforce --fix=default --fix=libmodernize.fixes.fix_open -f classic_division -f open -f idioms -f set_literal -f ws_comma .
    milescalabresi committed Feb 17, 2023
    Configuration menu
    Copy the full SHA
    3fb5f8b View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2023

  1. Configuration menu
    Copy the full SHA
    0be6fd9 View commit details
    Browse the repository at this point in the history
  2. Revert some encodings

    willgearty authored and milescalabresi committed Feb 22, 2023
    Configuration menu
    Copy the full SHA
    fe98fe4 View commit details
    Browse the repository at this point in the history
  3. Fix StringIO imports

    willgearty authored and milescalabresi committed Feb 22, 2023
    Configuration menu
    Copy the full SHA
    858d35b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0d9ad64 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5276d14 View commit details
    Browse the repository at this point in the history
  6. letters to ascii_letters

    willgearty authored and milescalabresi committed Feb 22, 2023
    Configuration menu
    Copy the full SHA
    afa680b View commit details
    Browse the repository at this point in the history
  7. Fix some tests

    willgearty authored and milescalabresi committed Feb 22, 2023
    Configuration menu
    Copy the full SHA
    0c345a0 View commit details
    Browse the repository at this point in the history
  8. Fix more tests

    willgearty authored and milescalabresi committed Feb 22, 2023
    Configuration menu
    Copy the full SHA
    8584cb4 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b8fd8f8 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    9b2fce4 View commit details
    Browse the repository at this point in the history
  11. move ESPUser import

    milescalabresi committed Feb 22, 2023
    Configuration menu
    Copy the full SHA
    6f6525b View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    1aa727a View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2023

  1. Configuration menu
    Copy the full SHA
    c7c87e8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    67cb96d View commit details
    Browse the repository at this point in the history
  3. a few small fixes

    Change 'is' to '==' when used with a literal 'png'
    drop database test_test_django in the before_script
    hwatheod authored and milescalabresi committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    8750bec View commit details
    Browse the repository at this point in the history
  4. use six.text_type for Python 2/3 compatibility

    Since __name__ requires `str` type, also add a `str`
    cast in create_membership_method.
    hwatheod authored and milescalabresi committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    ceb02bd View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    57f3805 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    45111d8 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2023

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

Commits on Mar 1, 2023

  1. Configuration menu
    Copy the full SHA
    71b7bad View commit details
    Browse the repository at this point in the history
  2. more fixes to binary strings in migrations adding back b chars; in ge…

    …neral, it is safe to remove b that precedes a quotation mark and follows whitespace, an equals sign, or an opening parenthesis; watch out for strings that end in b, including liab, web, dob, and verb
    milescalabresi committed Mar 1, 2023
    Configuration menu
    Copy the full SHA
    613745a View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2023

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

Commits on Mar 8, 2023

  1. more unicode fixes

    milescalabresi committed Mar 8, 2023
    Configuration menu
    Copy the full SHA
    6d9c09b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3b3b113 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c859c7d View commit details
    Browse the repository at this point in the history
  4. try just raw string

    milescalabresi committed Mar 8, 2023
    Configuration menu
    Copy the full SHA
    e200e76 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2023

  1. try just raw string

    milescalabresi committed Mar 10, 2023
    Configuration menu
    Copy the full SHA
    b2b4e58 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'migration-to-python3' of github.com:learning-unlimited/…

    …ESP-Website into migration-to-python3
    milescalabresi committed Mar 10, 2023
    Configuration menu
    Copy the full SHA
    f16d137 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2fab6ff View commit details
    Browse the repository at this point in the history
  4. define __lt__, etc. everywhere __cmp__ is defined

    Python 3 no longer supports __cmp__ directly. Instead,
    you have to define 6 separate comparison functions. I
    defined them in terms of the existing __cmp__ to minimize
    the risk of errors.
    hwatheod authored and milescalabresi committed Mar 10, 2023
    Configuration menu
    Copy the full SHA
    530acb9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    97b357a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    cf830b6 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'migration-to-python3' of github.com:learning-unlimited/…

    …ESP-Website into migration-to-python3
    milescalabresi committed Mar 10, 2023
    Configuration menu
    Copy the full SHA
    3cd14b2 View commit details
    Browse the repository at this point in the history
  8. use six.text_type for Python 2/3 compatibility

    Since __name__ requires `str` type, also add a `str`
    cast in create_membership_method.
    hwatheod authored and milescalabresi committed Mar 10, 2023
    Configuration menu
    Copy the full SHA
    ae51c71 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    764fba9 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    90cae23 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    40a4857 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2023

  1. Configuration menu
    Copy the full SHA
    bea7785 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c854ad3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    59e01fa View commit details
    Browse the repository at this point in the history
  4. Decode more response.content

    willgearty authored and milescalabresi committed Mar 17, 2023
    Configuration menu
    Copy the full SHA
    a56977f View commit details
    Browse the repository at this point in the history
  5. Don't decode strings

    willgearty authored and milescalabresi committed Mar 17, 2023
    Configuration menu
    Copy the full SHA
    d6974b3 View commit details
    Browse the repository at this point in the history
  6. Remove outdated code

    willgearty authored and milescalabresi committed Mar 17, 2023
    Configuration menu
    Copy the full SHA
    f71fe27 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    44f4578 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2023

  1. Fix some tests

    willgearty authored and milescalabresi committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    08a08a3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7c92f65 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a49752f View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2023

  1. Configuration menu
    Copy the full SHA
    eecde59 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'migration-to-python3' of github.com:learning-unlimited/…

    …ESP-Website into migration-to-python3
    milescalabresi committed Mar 25, 2023
    Configuration menu
    Copy the full SHA
    f161ac1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cf35791 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    118e019 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2023

  1. Configuration menu
    Copy the full SHA
    589ab76 View commit details
    Browse the repository at this point in the history
  2. update VM URL

    milescalabresi committed Mar 31, 2023
    Configuration menu
    Copy the full SHA
    99fc744 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2023

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

Commits on Apr 26, 2023

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

Commits on Apr 28, 2023

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

Commits on May 3, 2023

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

Commits on May 5, 2023

  1. Configuration menu
    Copy the full SHA
    40ebabb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    652b4dc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bbec2b8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    eb80d00 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2023

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

Commits on Jun 14, 2023

  1. clean up rst formatting

    kkbrum committed Jun 14, 2023
    Configuration menu
    Copy the full SHA
    0deb0a7 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2023

  1. Fix fabfile

    willgearty authored and milescalabresi committed Jul 26, 2023
    Configuration menu
    Copy the full SHA
    f5ed091 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2023

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

Commits on Sep 28, 2023

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

Commits on Oct 4, 2023

  1. Configuration menu
    Copy the full SHA
    c0afd8e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7595d5e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3503012 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2023

  1. Configuration menu
    Copy the full SHA
    f3cb6d7 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'migration-to-python3' of github.com:learning-unlimited/…

    …ESP-Website into migration-to-python3
    milescalabresi committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    7baed0f View commit details
    Browse the repository at this point in the history
  3. fix stray sudo typo

    milescalabresi committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    8177c60 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    70f4a22 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5e8cd54 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a031f61 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2023

  1. Configuration menu
    Copy the full SHA
    2b3ad3a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dc93a91 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    892d744 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2023

  1. Configuration menu
    Copy the full SHA
    fd98585 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7d41208 View commit details
    Browse the repository at this point in the history
  3. fix divide for float

    milescalabresi committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    13ff631 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2c8d8ee View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2023

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

Commits on Oct 25, 2023

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

Commits on Oct 27, 2023

  1. Configuration menu
    Copy the full SHA
    fb0e208 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'migration-to-python3' of github.com:learning-unlimited/…

    …ESP-Website into migration-to-python3
    milescalabresi committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    17b7ff1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b758601 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    795098e View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2023

  1. Configuration menu
    Copy the full SHA
    1757628 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6eb9f63 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b823696 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2023

  1. Configuration menu
    Copy the full SHA
    974339c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9d81e39 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    130bcc6 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Configuration menu
    Copy the full SHA
    b1c4116 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    59fb6b7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    67e95fd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e37d51c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    444d837 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2023

  1. Configuration menu
    Copy the full SHA
    fac8914 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c3472c0 View commit details
    Browse the repository at this point in the history
  3. fix whitespace

    milescalabresi committed Nov 15, 2023
    Configuration menu
    Copy the full SHA
    63dcd51 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0565154 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ca0702f View commit details
    Browse the repository at this point in the history
  6. fix missing kwarg

    milescalabresi committed Nov 15, 2023
    Configuration menu
    Copy the full SHA
    a59c8de View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    17d5776 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    aa3399a View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    faebf41 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    5a8efa1 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2023

  1. Configuration menu
    Copy the full SHA
    f7dc7f4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    761cfaf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5dc0b51 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2024

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

Commits on Jan 26, 2024

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

Commits on Jan 28, 2024

  1. Configuration menu
    Copy the full SHA
    872909c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7727dc5 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2024

  1. use two (2) CPUs by default for VM; it helps with running commands an…

    …d should be fine on modern PCs
    milescalabresi committed Jan 31, 2024
    Configuration menu
    Copy the full SHA
    555c6cb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5dc1cab View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2024

  1. Remove clear theme form option (#3603)

    * Remove clear theme form option
    
    * Remove test for clear theme functionality
    kkbrum authored and milescalabresi committed Feb 2, 2024
    Configuration menu
    Copy the full SHA
    ef78337 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    853c805 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    06671b3 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2024

  1. fix whitespace

    milescalabresi committed Feb 3, 2024
    Configuration menu
    Copy the full SHA
    7011215 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3679c47 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e7f6e14 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2024

  1. Make contact info more editable/hidable (#3697)

    * Add contact options to fruitsalad; fix navstructure saving when submitting form
    
    * Better styling of /themes/setup
    
    * Update bigpicture theme
    
    * Update circles theme, add default logo
    
    * Fix caching of logos on theme landing page
    
    * Update floaty theme
    
    * Update theme test
    
    * Fix spelling
    
    * Don't require contact info or contact links
    
    * Add default contact link values; save on link creation
    willgearty authored and milescalabresi committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    96f8ae6 View commit details
    Browse the repository at this point in the history
  2. Reset and remove optional fruitsalad variables (#3696)

    * Add reset and remove button for optional fruitsalad variables
    
    * Fix div layout and remove button functionality
    
    * Add variables with defaults; reset variables to defaults
    
    * Hide optional variables that are already added
    willgearty authored and milescalabresi committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    77773a8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c8f42d7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    08adc8d View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2024

  1. move class_size_max choices to widget

    previously, validation was done on the string, not the correct type,
    so once python3 started enforcing typechecking on the less-than
    operator, we need to switch to choice options of the correct type.
    unfortunately, there is not a pre-validation mechanism for this
    in Django 1.11 (TypedChiceField exists but does validation
    before type casting), so until Django 3, we need to put the choices in
    the widget, which will correctly validate them as integers
    milescalabresi committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    a8e78e0 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2024

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

Commits on Feb 28, 2024

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

Commits on Mar 1, 2024

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

Commits on Mar 7, 2024

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

Commits on Mar 9, 2024

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

Commits on Mar 10, 2024

  1. Configuration menu
    Copy the full SHA
    794414e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5bc8e08 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    aded7eb View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2024

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

Commits on Mar 24, 2024

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

Commits on Mar 27, 2024

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

Commits on Mar 29, 2024

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

Commits on Apr 3, 2024

  1. Configuration menu
    Copy the full SHA
    ccd088e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9417395 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c2f7e81 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'migration-to-python3' of github.com:learning-unlimited/…

    …ESP-Website into migration-to-python3
    milescalabresi committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    0592724 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'migration-to-python3' of github.com:learning-unlimited/…

    …ESP-Website into migration-to-python3
    milescalabresi committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    8149be3 View commit details
    Browse the repository at this point in the history
  6. Merge branch 'migration-to-python3' of github.com:learning-unlimited/…

    …ESP-Website into migration-to-python3
    milescalabresi committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    7066f78 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2024

  1. Configuration menu
    Copy the full SHA
    1dba109 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ea47cc1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2603d10 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7c677a3 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2024

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

Commits on May 10, 2024

  1. Configuration menu
    Copy the full SHA
    5310c90 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7a25d3b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    347073a View commit details
    Browse the repository at this point in the history

Commits on May 11, 2024

  1. Configuration menu
    Copy the full SHA
    35f45ca View commit details
    Browse the repository at this point in the history
  2. fix merge error

    milescalabresi committed May 11, 2024
    Configuration menu
    Copy the full SHA
    3120d12 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    996a3fb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    25e05b6 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2024

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

Commits on May 16, 2024

  1. Configuration menu
    Copy the full SHA
    d03eab5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c21f881 View commit details
    Browse the repository at this point in the history
  3. more modernize tweaks (whitespace fixes, avoiding filter iterators, l…

    …ists for compatibility, unicode, and imports)
    milescalabresi committed May 16, 2024
    Configuration menu
    Copy the full SHA
    f074ff9 View commit details
    Browse the repository at this point in the history
  4. add missing imports

    milescalabresi committed May 16, 2024
    Configuration menu
    Copy the full SHA
    c9e46c6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    80b03fe View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8aad5c1 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'migration-to-python3' of github.com:learning-unlimited/…

    …ESP-Website into migration-to-python3
    milescalabresi committed May 16, 2024
    Configuration menu
    Copy the full SHA
    767d53f View commit details
    Browse the repository at this point in the history
  8. Merge branch 'migration-to-python3' of github.com:learning-unlimited/…

    …ESP-Website into migration-to-python3
    milescalabresi committed May 16, 2024
    Configuration menu
    Copy the full SHA
    0364736 View commit details
    Browse the repository at this point in the history
  9. Merge branch 'migration-to-python3' of github.com:learning-unlimited/…

    …ESP-Website into migration-to-python3
    milescalabresi committed May 16, 2024
    Configuration menu
    Copy the full SHA
    82dde85 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2024

  1. Configuration menu
    Copy the full SHA
    4adb4f3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2db8263 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'migration-to-python3' of github.com:learning-unlimited/…

    …ESP-Website into migration-to-python3
    milescalabresi committed May 19, 2024
    Configuration menu
    Copy the full SHA
    40df3cb View commit details
    Browse the repository at this point in the history

Commits on May 20, 2024

  1. fix typo

    milescalabresi committed May 20, 2024
    Configuration menu
    Copy the full SHA
    8d001ae View commit details
    Browse the repository at this point in the history

Commits on May 25, 2024

  1. Fix typo in review

    Co-authored-by: Katherine <[email protected]>
    milescalabresi and kkbrum committed May 25, 2024
    Configuration menu
    Copy the full SHA
    4ef0dbc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2d8b6e7 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'migration-to-python3' of github.com:learning-unlimited/…

    …ESP-Website into migration-to-python3
    milescalabresi committed May 25, 2024
    Configuration menu
    Copy the full SHA
    a5d06fd View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2024

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

Commits on Jul 19, 2024

  1. Configuration menu
    Copy the full SHA
    78e05d7 View commit details
    Browse the repository at this point in the history
  2. missing six usage

    milescalabresi committed Jul 19, 2024
    Configuration menu
    Copy the full SHA
    01f6e8c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7573a61 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2024

  1. one more iteritems fix

    milescalabresi committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    5ce45f2 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2024

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

Commits on Jul 31, 2024

  1. Configuration menu
    Copy the full SHA
    11a3c97 View commit details
    Browse the repository at this point in the history
  2. Fix attendance dropdown

    willgearty committed Jul 31, 2024
    Configuration menu
    Copy the full SHA
    3dfea2e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    61d6a07 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    03e5b13 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2a006a8 View commit details
    Browse the repository at this point in the history
  6. Merge branch 'migration-to-python3' of github.com:learning-unlimited/…

    …ESP-Website into migration-to-python3
    milescalabresi committed Jul 31, 2024
    Configuration menu
    Copy the full SHA
    8fb1dd9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5a51f44 View commit details
    Browse the repository at this point in the history
  8. Student schedule fixes

    willgearty committed Jul 31, 2024
    Configuration menu
    Copy the full SHA
    fb6aa86 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2024

  1. Configuration menu
    Copy the full SHA
    86d0c62 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'migration-to-python3' of github.com:learning-unlimited/…

    …ESP-Website into migration-to-python3
    milescalabresi committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    dd29518 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9afbb0f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6b677a6 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

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

Commits on Aug 14, 2024

  1. bump IPython version

    milescalabresi committed Aug 14, 2024
    Configuration menu
    Copy the full SHA
    0d90ea0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9d7661e View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2024

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

Commits on Aug 23, 2024

  1. Configuration menu
    Copy the full SHA
    353a9f8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6d7214f View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2024

  1. Fix credit card module

    willgearty committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    70e852c View commit details
    Browse the repository at this point in the history