Bounz / HomeGenie-BE

HomeGenie (Bounz Edition)
GNU General Public License v3.0
5 stars 3 forks source link

build(deps): bump IronPython from 2.7.10 to 3.4.0 in /HomeGenie #221

Open dependabot[bot] opened 1 year ago

dependabot[bot] commented 1 year ago

Bumps IronPython from 2.7.10 to 3.4.0.

Release notes

Sourced from IronPython's releases.

IronPython 3.4.0

On behalf of the IronPython team, I'm very happy to announce the release of IronPython 3.4.0. The runtime targets are .NET Framework 4.6.2, .NET Core 3.1 and .NET 6. The baseline for IronPython 3.4 is Python 3.4, although it also includes some syntax and features from newer Python versions, most notably f-string support (from 3.6).

IronPython 3.4 uses Python 3.4 syntax and standard libraries and so your Python code will need to be updated accordingly. For details on upgrading from IronPython 2 to 3 see the Upgrading from IronPython 2 to 3 article.

While compatibility with CPython has been one of our main goals with IronPython 3, there are still some differences that may cause issues, for more information see the Differences from CPython article.

This release brings in numerous bug fixes, improved compatibility with CPython and better test coverage. It also include a new installation method for the .NET version using .NET tools (dotnet tool install -g IronPython.Console).

Special thanks to @​BCSharp for the numerous contributions! As well as @​LostBenjamin, @​timgates42 and @​scott-xu for their contributions to this release.

Full Changelog: https://github.com/IronLanguages/ironpython3/compare/v3.4.0-beta1...v3.4.0

IronPython 3.4.0-beta1

On behalf of the IronPython team, I'm very happy to announce the release of IronPython 3.4.0-beta1. The runtime targets are .NET Framework 4.6, .NET Core 3.1 and .NET 6. The baseline for this release is Python 3.4.

IronPython 3.4 uses Python 3.4 syntax and standard libraries and so your Python code will need to be updated accordingly. For details on upgrading from IronPython 2 to 3 see the Upgrading from IronPython 2 to 3 article.

While compatibility with CPython has been one of our main goals with IronPython 3, there are still some differences that may cause issues, for more information see the Differences from CPython article.

This release brings in numerous bug fixes, improvements and features from newer versions of Python. Notably:

  • int/long unification (thanks @​BCSharp )
  • f-string support (from 3.6)
  • % formatting for bytes (from 3.5)
  • improved module support (for example venv, ensurepip on Linux, django, typing)
  • improved test coverage
  • improved compatibility with CPython

Thanks to @​BCSharp for the numerous contributions!

IronPython 3.4.0-alpha1

On behalf of the IronPython team, I'm very happy to announce the release of IronPython 3.4.0-alpha1. The runtime targets are .NET Framework 4.6, .NET Core 2.1, .NET Core 3.1 and .NET 5. The baseline for this release is Python 3.4.

IronPython 3.4 uses Python 3.4 syntax and standard libraries and so your Python code will need to be updated accordingly. For details on upgrading from IronPython 2 to 3 see the Upgrading from IronPython 2 to 3 article.

While compatibility with CPython has been one of our main goals with IronPython 3, there are still some differences that may cause issues, for more information see the Differences from CPython article.

Huge thanks to @​BCSharp, @​slide and other contributors @​gpetrou, @​jdhardy, @​paweljasinski, @​gfmcknight, @​jameslan, @​moto-timo, @​rtzoeller, @​in-code-i-trust, @​hackf5, @​dc366, @​simplicbe, @​AlexKubiesa, @​isaiah, @​ivanbakel, @​syn2083, @​komodo472, @​yuhan0, @​michaelblyons, @​simonwyatt, @​alanmbarr, @​ShahneRodgers.

Edit (2021-04-21): updated the release binaries to resolve an issue with ensurepip.

Changelog

Sourced from IronPython's changelog.

What's New In Python 3.0

https://docs.python.org/3/whatsnew/3.0.html

Views And Iterators Instead Of Lists

  • [x] dict methods dict.keys(), dict.items() and dict.values() return "views" instead of lists. For example, this no longer works: k = d.keys(); k.sort(). Use k = sorted(d) instead (this works in Python 2.5 too and is just as efficient).
  • [x] Also, the dict.iterkeys(), dict.iteritems() and dict.itervalues() methods are no longer supported.
  • [x] map() and filter() return iterators. If you really need a list, a quick fix is e.g. list(map(...)), but a better fix is often to use a list comprehension (especially when the original code uses lambda), or rewriting the code so it doesn't need a list at all. Particularly tricky is map() invoked for the side effects of the function; the correct transformation is to use a regular for loop (since creating a list would just be wasteful).
  • [x] zip() now returns an iterator.

Ordering Comparisons

  • [x] The ordering comparison operators (<, <=, >=, >) raise a TypeError exception when the operands don't have a meaningful natural ordering. Thus, expressions like 1 < '', 0 > None or len <= len are no longer valid, and e.g. None < None raises TypeError instead of returning False. A corollary is that sorting a heterogeneous list no longer makes sense - all the elements must be comparable to each other. Note that this does not apply to the == and != operators: objects of different incomparable types always compare unequal to each other.
  • [x] builtin.sorted() and list.sort() no longer accept the cmp argument providing a comparison function. Use the key argument instead. N.B. the key and reverse arguments are now "keyword-only"
  • [x] The cmp() function should be treated as gone, and the __cmp__() special method is no longer supported. Use __lt__() for sorting, __eq__() with __hash__(), and other rich comparisons as needed. (If you really need the cmp() functionality, you could use the expression (a > b) - (a < b) as the equivalent for cmp(a, b).)

Integers

  • [x] [PEP 0237][]: Essentially, long renamed to int. That is, there is only one built-in integral type, named int; but it behaves mostly like the old long type.
  • [x] [PEP 0238][]: An expression like 1/2 returns a float. Use 1//2 to get the truncating behavior. (The latter syntax has existed for years, at least since Python 2.2.)
  • [x] The sys.maxint constant was removed, since there is no longer a limit to the value of integers. However, sys.maxsize can be used as an integer larger than any practical list or string index. It conforms to the implementation's "natural" integer size and is typically the same as sys.maxint in previous releases on the same platform (assuming the same build options).
  • [x] The repr() of a long integer doesn't include the trailing L anymore, so code that unconditionally strips that character will chop off the last digit instead. (Use str() instead.)
  • [x] Octal literals are no longer of the form 0720; use 0o720 instead.

Text Vs. Data Instead Of Unicode Vs. 8-bit

  • [x] Python 3.0 uses the concepts of text and (binary) data instead of Unicode strings and 8-bit strings. All text is Unicode; however encoded Unicode is represented as binary data. The type used to hold text is str, the type used to hold data is bytes. The biggest difference with the 2.x situation is that any attempt to mix text and data in Python 3.0 raises TypeError, whereas if you were to mix Unicode and 8-bit strings in Python 2.x, it would work if the 8-bit string happened to contain only 7-bit (ASCII) bytes, but you would get UnicodeDecodeError if it contained non-ASCII values. This value-specific behavior has caused numerous sad faces over the years.
  • [ ] As a consequence of this change in philosophy, pretty much all code that uses Unicode, encodings or binary data most likely has to change. The change is for the better, as in the 2.x world there were numerous bugs having to do with mixing encoded and unencoded text. To be prepared in Python 2.x, start using unicode for all unencoded text, and str for binary or encoded data only. Then the 2to3 tool will do most of the work for you.
  • [x] You can no longer use u"..." literals for Unicode text. (Readded in Python 3.3). However, you must use b"..." literals for binary data.
  • [x] As the str and bytes types cannot be mixed, you must always explicitly convert between them. Use str.encode() to go from str to bytes, and bytes.decode() to go from bytes to str. You can also use bytes(s, encoding=...) and str(b, encoding=...), respectively.
  • [x] Like str, the bytes type is immutable. There is a separate mutable type to hold buffered binary data, bytearray. Nearly all APIs that accept bytes also accept bytearray. The mutable API is based on collections.MutableSequence.
  • [x] All backslashes in raw string literals are interpreted literally. This means that '\U' and '\u' escapes in raw strings are not treated specially. For example, r'\u20ac' is a string of 6 characters in Python 3.0, whereas in 2.6, ur'\u20ac' was the single "euro" character. (Of course, this change only affects raw string literals; the euro character is '\u20ac' in Python 3.0.)
  • [x] The builtin basestring abstract type was removed. Use str instead. The str and bytes types don't have functionality enough in common to warrant a shared base class. The 2to3 tool (see below) replaces every occurrence of basestring with str.
  • [ ] Files opened as text files (still the default mode for open()) always use an encoding to map between strings (in memory) and bytes (on disk). Binary files (opened with a b in the mode argument) always use bytes in memory. This means that if a file is opened using an incorrect mode or encoding, I/O will likely fail loudly, instead of silently producing incorrect data. It also means that even Unix users will have to specify the correct mode (text or binary) when opening a file. There is a platform-dependent default encoding, which on Unixy platforms can be set with the LANG environment variable (and sometimes also with some other platform-specific locale-related environment variables). In many cases, but not all, the system default is UTF-8; you should never count on this default. Any application reading or writing more than pure ASCII text should probably have a way to override the encoding. There is no longer any need for using the encoding-aware streams in the codecs module.
  • [ ] Filenames are passed to and returned from APIs as (Unicode) strings. This can present platform-specific problems because on some platforms filenames are arbitrary byte strings. (On the other hand, on Windows filenames are natively stored as Unicode.) As a work-around, most APIs (e.g. open() and many functions in the os module) that take filenames accept bytes objects as well as strings, and a few APIs have a way to ask for a bytes return value. Thus, os.listdir() returns a list of bytes instances if the argument is a bytes instance, and os.getcwdb() returns the current working directory as a bytes instance. Note that when os.listdir() returns a list of strings, filenames that cannot be decoded properly are omitted rather than raising UnicodeError.
  • [ ] Some system APIs like os.environ and sys.argv can also present problems when the bytes made available by the system is not interpretable using the default encoding. Setting the LANG variable and rerunning the program is probably the best approach.
  • [x] [PEP 3138][]: The repr() of a string no longer escapes non-ASCII characters. It still escapes control characters and code points with non-printable status in the Unicode standard, however.
  • [x] [PEP 3120][]: The default source encoding is now UTF-8.
  • [x] [PEP 3131][]: Non-ASCII letters are now allowed in identifiers. (However, the standard library remains ASCII-only with the exception of contributor names in comments.)
  • [x] The StringIO and cStringIO modules are gone. Instead, import the io module and use io.StringIO or io.BytesIO for text and data respectively.

New Syntax

  • [x] [PEP 3107][]: Function argument and return value annotations. This provides a standardized way of annotating a function's parameters and return value. There are no semantics attached to such annotations except that they can be introspected at runtime using the __annotations__ attribute. The intent is to encourage experimentation through metaclasses, decorators or frameworks.
  • [ ] [PEP 3102][]: Keyword-only arguments. Named parameters occurring after *args in the parameter list must be specified using keyword syntax in the call. You can also use a bare * in the parameter list to indicate that you don't accept a variable-length argument list, but you do have keyword-only arguments.
  • [x] Keyword arguments are allowed after the list of base classes in a class definition. This is used by the new convention for specifying a metaclass (see next section), but can be used for other purposes as well, as long as the metaclass supports it.
  • [x] [PEP 3104][]: nonlocal statement. Using nonlocal x you can now assign directly to a variable in an outer (but non-global) scope. nonlocal is a new reserved word.
  • [x] [PEP 3132][]: Extended Iterable Unpacking. You can now write things like a, b, *rest = some_sequence. And even *rest, a = stuff. The rest object is always a (possibly empty) list; the right-hand side may be any iterable

... (truncated)

Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)