14
0
forked from pool/python-pyp

- Use release from pypi, the last release it not tagged in github, but

add a new source with the github repo to get the tests that are not
  in the pypi release. (gh#hauntsaninja/pyp#33)
- Update to 1.1.0:
  * Fix AST construction on Python 3.11
  * Constructed ASTs now have a more convincing end_lineno
  * Test coverage for fallback unparsing, other test improvements
  * Now packaged by flit
- [v1.0.0]
  * Configuration now allows the use of magic variables, effectively
    allowing you to define your own magic variables. See README.md for
    details
  * Explicit printing in used config functions will now disable
    automatic printing
  * Config definitions can now use things defined from wildcard
    imports. Automatic imports now work in config as well
  * Removed s as a magic variable. If you miss it, you can redefine it
    in your config using s = x
  * Implement correct scoping semantics for comprehensions, including
    with assignment expressions

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyp?expand=0&rev=3
This commit is contained in:
2023-02-21 18:24:39 +00:00
committed by Git OBS Bridge
parent f877903472
commit d9b1efcdf2
5 changed files with 47 additions and 14 deletions

View File

@@ -1,3 +1,27 @@
-------------------------------------------------------------------
Tue Feb 21 16:35:23 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>
- Use release from pypi, the last release it not tagged in github, but
add a new source with the github repo to get the tests that are not
in the pypi release. (gh#hauntsaninja/pyp#33)
- Update to 1.1.0:
* Fix AST construction on Python 3.11
* Constructed ASTs now have a more convincing end_lineno
* Test coverage for fallback unparsing, other test improvements
* Now packaged by flit
- [v1.0.0]
* Configuration now allows the use of magic variables, effectively
allowing you to define your own magic variables. See README.md for
details
* Explicit printing in used config functions will now disable
automatic printing
* Config definitions can now use things defined from wildcard
imports. Automatic imports now work in config as well
* Removed s as a magic variable. If you miss it, you can redefine it
in your config using s = x
* Implement correct scoping semantics for comprehensions, including
with assignment expressions
-------------------------------------------------------------------
Thu Sep 9 08:38:33 UTC 2021 - Hans-Peter Jansen <hpj@urpla.net>