nyergler / nested-formset

Nest Django formsets for multi-level editing.
BSD 3-Clause "New" or "Revised" License
87 stars 21 forks source link

Add testing for all supported Python and Django versions #24

Closed jdufresne closed 7 years ago

jdufresne commented 7 years ago

Now include Django 1.11 and Python 3.6 in testing.

Moved to an explicit matrix as there isn't consistent overlap in support of Python across Django versions.

Added all versions to the trove classifiers in setup.py.

Added pip caching to travis defintion.

nyergler commented 7 years ago

Thanks for updating the testing matrix. FWIW in other projects I've just been testing with supported Django versions, so I'll probably drop 1.9 out of here at some point soon.

Any specific reason for vendoring in flatten_to_dict from Rebar?

jdufresne commented 7 years ago

I've dropped 1.9 in the latest revision.

I originally added flatten_to_dict() as rebar wasn't compatible when using the latest Django. But that appears to be resolved simply by adjusting the test settings. So I've reverted to using the rebar version.

nyergler commented 7 years ago

Thanks, @jdufresne. Apologies for the delays in merging.