aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-02-09Fix flake8 errors and add it to CI (#45)Taneli Hukkinen
* Fix flake8 errors and add it to CI * Use extras for test dependencies Co-authored-by: Fantix King <fantix.king@gmail.com>
2021-02-09Remove deprecated setup.py testFantix King
2021-02-09Make __repr__ more similar to other mapping types (#58)Ofek Lev
2021-02-09Test Python 3.9 (#51)Taneli Hukkinen
2021-02-09Make PEP references hyperlinks (#32)Tom Keefe
2020-12-06Add Python 3.10 support: use Py_SET_SIZE() (#52)Victor Stinner
2020-05-17v0.14v0.14Yury Selivanov
* Allow `None` to be used as key in pure-Python implementation. By @TIGirardi.
2020-05-17Unbreak CIYury Selivanov
2020-05-17Accept None as a key in pure python module (#42)TIGirardi
2020-05-13v0.13v0.13Yury Selivanov
Bugfixes * Various improvements w.r.t. type annotations & typing support (by @hukkinj1) * Fix pure-Python implementation to accept keyword argument "col" correctly (by @hukkinj1)
2020-05-13Import Literal type from typing_extensions if python version<3.8 (#33)Taneli Hukkinen
2020-05-13Improve type annotation of Map.__init__Taneli Hukkinen
2020-05-13Fix errors when a kwarg is named "col" (#35)Taneli Hukkinen
2020-05-13Make MapMutation.update consistently return an implicit NoneTaneli Hukkinen
2020-05-13Improve type annotations of Map.update and MapMutation.updateTaneli Hukkinen
2020-05-13Improve CI badge linkTaneli Hukkinen
2020-05-13Update README CI badgesTaneli Hukkinen
2020-05-13Fix return type annotation of Map.__reduce__Taneli Hukkinen
2020-05-13Add python version requirement metadataTaneli Hukkinen
2020-04-22Drop Travis and Appveyor CIElvis Pranskevichus
Switch to Github Actions exclusively
2020-04-22Update the test workflowElvis Pranskevichus
2020-04-22Add Github release workflowv0.12Elvis Pranskevichus
2020-04-22Define NDEBUG activelyElvis Pranskevichus
`NDEBUG` is not defined by the standard library or the compiler by default, so make sure it's defined when building non-debug builds.
2020-04-22A bunch of fixesYury Selivanov
* Fix #26: `ifdef NDEBUG` should be `ifndef NDEBUG` * More tests for #24 * Add a `DEBUG_IMMUTABLES` env var to build debug builds
2020-04-22Fix the mutation API to maintain elements count correctly (#25, #24)TIGirardi
2019-11-04Bump the version to 0.12Yury Selivanov
2019-11-04Fix manylinux for 3.8Yury Selivanov
2019-11-02Add Python 3.8 support (#16)Bruno Oliveira
Fix #15
2019-10-11Bump the version to 0.11v0.11Yury Selivanov
2019-10-11Include py.typed/*.pyi in MANIFEST.inYury Selivanov
2019-10-11fix: add package_data to setup.py (#14)Anton Agestam
2019-10-07Bump the version to 0.10v0.10Yury Selivanov
2019-10-03Add typing information (#13)Anton Agestam
2018-12-13Bump the version to 0.9v0.9Yury Selivanov
2018-12-13Simplify MapMutation.__exit__() implementationYury Selivanov
2018-12-13Don't allow MapMutation.update() calls after the mutation is finishedYury Selivanov
2018-12-13Bump the version to 0.8v0.8Yury Selivanov
2018-12-13Add MapMutation.update(); make creating Map from a Map faster; fix bugsYury Selivanov
* Add new MapMutation.update() method that behaves like MutableMapping.update() * Make it faster to create a Map() from another Map() -- it's now an O(1) operation. * update() method had a bug that could cause the update Map object to have a wrong number of elements.
2018-11-20Bump the version to 0.7v0.7Yury Selivanov
2018-11-20Fix README markupYury Selivanov
2018-11-20Make MapMutation unpickleableYury Selivanov
2018-11-20ci: Test 3.7 on AppVeyor and macOSYury Selivanov
2018-11-20Fix error message: "has been finalized" -> "has been finished"Yury Selivanov
2018-11-20Rename .finalize() to .finish()Yury Selivanov
2018-11-20Fix commentYury Selivanov
2018-11-20ci: Test/build 3.7 wheelsYury Selivanov
2018-11-20Get rid of f-strings to restore 3.5 compatibilityYury Selivanov
2018-11-20Update readmeYury Selivanov
2018-11-20Make MapMutation a context managerYury Selivanov
2018-11-20Implement mutable mapping API for MapMutation; add after-finalize checksYury Selivanov