summaryrefslogtreecommitdiff
path: root/dev
Commit message (Collapse)AuthorAgeFilesLines
* Update dev READMESeth Morton2020-11-261-0/+2
|
* Do not pin testing dependenciesSeth Morton2020-11-263-32/+0
| | | | | | | | | | | | | Apparently Linux distro packagers do not respect the pinned testing dependencies that I have carefully chosen so they experience errors that result from external changes over which I have no control, and then expect me to fix the tests even though I deliberately tried to avoid problems like this by pinning the testing dependencies. Oh well. By removing the pins, perhaps I can find these problems early and correct them myself.
* Run blackSeth Morton2020-11-221-3/+5
| | | | | It turns out I had an error in the Travis-CI black invocation that cause it to not actually catch formatting errors. Oops!
* Python 3.5-friendly syntaxSeth Morton2020-11-191-2/+2
|
* Add script to generate the new hex numbers on Python updateSeth Morton2020-11-191-0/+45
|
* Update testing dependency versionsSeth Morton2020-01-061-13/+13
|
* Add clean and bump envs to tox.iniSeth Morton2019-11-195-27/+107
| | | | | | | These use re-written bump and clean auxillary scripts - these were once shell scripts but are now Python. Also, the README in dev/ has been updated.
* Re-remove Python 2.7 support.Seth Morton2019-11-132-12/+3
|
* Update bump.sh to account for previously uncommitted collateralSeth Morton2019-11-131-0/+5
|
* Revert "Update to a Python3.4-compatible hypothesis version"Seth Morton2019-11-131-1/+1
| | | | This reverts commit 2c4a865f691eeac6f6e2c861377bd3488e963de0.
* Update to a Python3.4-compatible hypothesis versionSeth Morton2019-11-131-1/+1
|
* Revert removal of Python 2.7 in one commitThis is to make a release that ↵Seth Morton2019-11-132-0/+2
| | | | supports Python 3.8 and Python 2.7. Thiscommit can be reverted to then remove 2.7 support again.
* Pin testing and documentation dependenciesSeth Morton2019-11-122-7/+37
| | | | | This will make failures due to testing helpers being updated less likely to occur going forward.
* Remove pathlib compatibility layerSeth M Morton2019-03-031-2/+0
| | | | | | | | pathlib comes with Python 3.4 stdlib, so no need to add a compatibility layer. The path_splitter function has been re-written in terms of pathlib since that is now guaranteed to exist. Much simpler.
* Move development collateral into a dev/ folderSeth Morton2019-03-034-0/+38
This keeps the root directory cleaner. Dependent files and documentation has been modified to relfect the change. Additionally, the bump.sh file has been updated to force the use of bump2version over bumpversion, and to use a cross-platform sed invokation.