Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-16 | s/%/fstrings/g | Jeff Forcier | |
Except in one spot where it was too complicated to bother for now XD | |||
2023-01-16 | Twiddle a test to not shadow hex builtin (and nuke %) | Jeff Forcier | |
2023-01-16 | Invoke 2 is now out | Jeff Forcier | |
2023-01-13 | flake8/black | Jeff Forcier | |
2023-01-12 | No more PKey.__cmp__ | Jeff Forcier | |
2023-01-12 | Can't actually use a set here as it will destroy ordering | Jeff Forcier | |
2023-01-12 | Swap around __bytes__/__str__ for some classes | Jeff Forcier | |
Plus related updates to tests, docstrings, changelog | |||
2023-01-12 | Start fixing up blatantly wrong-under-py3 docstring types | Jeff Forcier | |
2023-01-12 | Upcoming alabaster release with modern sphinx stylesheet fix | Jeff Forcier | |
2023-01-12 | Modern sphinx autodoc settings | Jeff Forcier | |
2023-01-12 | We live in the future now | Jeff Forcier | |
2023-01-12 | Update a bunch of no/low impact python2/3 references/comments | Jeff Forcier | |
2023-01-12 | No need for passthru dunder-init in Py3-only dict subclasses yey | Jeff Forcier | |
2023-01-12 | Nix setup.cfg | Jeff Forcier | |
2023-01-12 | Last spot of six removal | Jeff Forcier | |
2023-01-11 | flake8 | Jeff Forcier | |
2023-01-11 | blacken | Jeff Forcier | |
2023-01-11 | Missed a spot re: b,u helpers now in util | Jeff Forcier | |
2023-01-11 | No idea when self.fail worked or didn't. old code is old? | Jeff Forcier | |
2023-01-11 | Import shuffle | Jeff Forcier | |
2023-01-11 | Put back the old faux-long(), kinda, in a few spots only | Jeff Forcier | |
2023-01-10 | Set up icecream in test harness | Jeff Forcier | |
2023-01-10 | Nix old todo | Jeff Forcier | |
2023-01-09 | Oh right that's why I had specific pins here | Jeff Forcier | |
2023-01-09 | Some semi-missed removals of 'long' | Jeff Forcier | |
- a couple spots where we wrote longs as int64 and ints as int. I _think_ the right thing to do here is write all ints as int64 given how Python handles these under 3. - docs bits | |||
2023-01-09 | s/mock/unittest.mock/g | Jeff Forcier | |
2023-01-09 | py3compat.strftime -> time.strftime | Jeff Forcier | |
2023-01-09 | Nuke outdated todo | Jeff Forcier | |
2023-01-09 | nuke py3compat.input | Jeff Forcier | |
2023-01-09 | Remove sys.version_info checks | Jeff Forcier | |
2023-01-09 | Update encode/decodebytes | Jeff Forcier | |
2023-01-09 | py3compat.bytes -> builtin or literal depending | Jeff Forcier | |
2023-01-09 | py3compat.builtins -> stdlib builtins | Jeff Forcier | |
2023-01-09 | text_type -> str | Jeff Forcier | |
2023-01-09 | bytes_types -> bytes | Jeff Forcier | |
2023-01-09 | string_types -> str | Jeff Forcier | |
2023-01-09 | Move b, u helpers to util module for now | Jeff Forcier | |
Later on we can likely nuke many uses of these | |||
2023-01-09 | Remove or transmute all use of long() | Jeff Forcier | |
- When wrapping literals: just go away - When wrapping variables whose values are already definitely integers (eg output of 'id()'): ditto - When wrapping variables of unknown provenance or which are definitely NOT integers: replaced with int() | |||
2023-01-09 | Update BytesIO | Jeff Forcier | |
2023-01-09 | Remove py3compat.PY2, including related streamlining | Jeff Forcier | |
2023-01-09 | integer_types -> int | Jeff Forcier | |
2023-01-09 | Update StringIO | Jeff Forcier | |
2023-01-09 | Migrate some byte related helpers around | Jeff Forcier | |
I feel like we should be able to just nuke byte_chr and friends at this point, but it's not entirely obvious, so let's rock that boat later. | |||
2023-01-09 | Require modern versions of bcrypt, pynacl | Jeff Forcier | |
We may end up using new Cryptography primitives instead of pynacl eventually, but for now, just using both of these libraries' "3.6+" releases as new baseline. | |||
2023-01-09 | Move to cryptography 3.3 as baseline dep | Jeff Forcier | |
and bump top end test matrix cell to 40ish | |||
2023-01-09 | Tidy up requires/entrypoints/install docs | Jeff Forcier | |
- Realized at this date that _moving_ Ed25519 deps behind an entrypoint is going the wrong direction, that key type should be used _more_ now, not _less_. I no longer even remember why folks were pissy about pynacl/bcrypt exactly. - We can in fact just use ed25519 from cryptography itself now, so no more pynacl anyways (but still bcrypt) - Twiddle install language a bit re: invoke used in more places, and again removing the notes about ed25519 being special | |||
2023-01-09 | Make py3compat drop its own changelog entry, and nix the file itself | Jeff Forcier | |
NOTE: imports not fixed yet so this will break CI! | |||
2023-01-09 | Classifiers, python_requires update | Jeff Forcier | |
2023-01-09 | Bump invoke requirement to modern rev | Jeff Forcier | |
May technically function with invoke 1.x but much easier to support if we ensure everything's working with the same transitive dep tree. | |||
2023-01-09 | Changelog entry for py2 drop | Jeff Forcier | |