Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/update
Commit message (Collapse)AuthorAgeFilesLines
* Get files ready for 1.10 release1.10Arthur de Jong2018-10-141-7/+13
|
* Get files ready for 1.9 release1.9Arthur de Jong2018-04-141-2/+4
|
* Correctly split IMSI with multi-length MNCArthur de Jong2018-04-101-2/+3
| | | | | | | | | | | | Ensures that imsi.split() will correctly split the IMSI into an MCC, MNC and MSIN even if not all MNCs within a single MCC have the same length. This has the downside of not being able to guess the MNC length in some cases. This also omits empty information from the data file and updates the data file from Wikipedia. Closes https://github.com/arthurdejong/python-stdnum/issues/68
* Add Austrian postal codeArthur de Jong2018-03-171-0/+102
| | | | | This also fixes the name of the Dutch postal_code alias and tunes the tests.
* Update the flake8 ignore listArthur de Jong2018-02-142-3/+0
| | | | | | | | | | | | Re-enable the flake8 test for unused imports by explicitly marking imports for namespace purposes. This allows us to remove a few unused imports. A few more cleanups that allow us to reduce the number of ignored flake8 ignored tests. The remaining ignored tests are now documented. Ignore a flake8 warning about print statements because we use print in the update scripts.
* Add support for Belgian IBAN formatArthur de Jong2018-02-102-0/+94
| | | | | | | This adds further checks to the country-specific part of the IBAN for Belgian IBANs. Closes https://github.com/arthurdejong/python-stdnum/issues/62
* Get files ready for 1.8 release1.8Arthur de Jong2018-01-031-1/+7
|
* Move update scripts to own directoryArthur de Jong2018-01-0111-0/+842
This moves all the update scripts to their own directory so they don't clutter the toplevel directory. This also ensures that the scripts are passed through flake8 and makes some adjustments for that alongside a few other cleanups.