<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pygments-git.git/.github/workflows, branch regex</title>
<subtitle>github.com: pygments/pygments.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/'/>
<entry>
<title>all: convert "re" to "regex"</title>
<updated>2022-10-27T10:15:22+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2022-10-27T05:18:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=629c448bdcbd7ca9f5d530c0ef10fa3bcd7ccbff'/>
<id>629c448bdcbd7ca9f5d530c0ef10fa3bcd7ccbff</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build: harden docs.yaml permissions</title>
<updated>2022-09-24T20:14:02+00:00</updated>
<author>
<name>Alex</name>
<email>aleksandrosansan@gmail.com</email>
</author>
<published>2022-09-20T10:21:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=2ea11788e83cd517dcb1f24e9c1d862b0d865bf8'/>
<id>2ea11788e83cd517dcb1f24e9c1d862b0d865bf8</id>
<content type='text'>
Signed-off-by: Alex &lt;aleksandrosansan@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Alex &lt;aleksandrosansan@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>build: harden build.yaml permissions</title>
<updated>2022-09-24T20:14:02+00:00</updated>
<author>
<name>Alex</name>
<email>aleksandrosansan@gmail.com</email>
</author>
<published>2022-09-20T10:21:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=9f5aa677a97d63d2d8441b949bc7047ec18c89c2'/>
<id>9f5aa677a97d63d2d8441b949bc7047ec18c89c2</id>
<content type='text'>
Signed-off-by: Alex &lt;aleksandrosansan@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Alex &lt;aleksandrosansan@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>pytest: only raise warnings as errors in CI</title>
<updated>2022-07-30T10:47:38+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2022-07-30T09:05:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=7620ef295ee9ac3ad2723847bc6722b5beec248e'/>
<id>7620ef295ee9ac3ad2723847bc6722b5beec248e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Overhaul demo and support running it locally (#2141)</title>
<updated>2022-05-21T15:56:08+00:00</updated>
<author>
<name>amitkummer</name>
<email>49096391+amitkummer@users.noreply.github.com</email>
</author>
<published>2022-05-21T15:56:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=cbcbffea1b1f8edf4b824edadbb181f5143ce9ab'/>
<id>cbcbffea1b1f8edf4b824edadbb181f5143ce9ab</id>
<content type='text'>
* Add Make target for building Pyodide with currently checked out Pygments

Add a target to the documentation's Makefile to make Pyodide with
Pygments from the current checkout.

Additionally, use this target when building the documentation with
the demo page.

The new target works by building Pyodide on a Docker container, and
then exporting the build artifacts back to the host.

The Dockerfile used by the new target is based on the Dockerfile which
was used for building Pyodide on the CI:
https://github.com/pygments/pyodide-artifacts/blob/master/container/Dockerfile

The main difference between the two is that the new Dockerfile uses the
newest Pyodide base image, which is built by a repository which is actively
maintained (the Iodide project is no longer maintained).

The purpose of this change is to allow running the demo locally,
which was not possible previously, as Pyodide was only built by the
CI when deploying to Github Pages.

* Add instructions on how to run the demo locally to the README

* Update demo to work with Pyodide v0.20

Remove usage of Pyodide functionality which was deprecated in Pyodide v0.17:

- Loading Pyodide using `languagePluginURL` and `languagePluginLoader`.
- Access to globals via `pyodide.globals.x` has changed to `pyodide.globals.get("x")`.

Source:
https://pyodide.org/en/stable/project/release-notes/v0.17.0.html?highlight=languageplugin#api-changes

* Fix #2137

* Fix use of `styles` variable before it's defined

The `styles` variable was being used before it's value was set (which
is done when Pyodide finishes loading).

* Remove GitHub action for building Pyodide

This action is obsolete, as building Pyodide is now done using `make pyodide`.

* Upgrade Pages deployment action version

* Add to .dockerignore all files in .gitignore

* Change `pyodide` target to be a phony target</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add Make target for building Pyodide with currently checked out Pygments

Add a target to the documentation's Makefile to make Pyodide with
Pygments from the current checkout.

Additionally, use this target when building the documentation with
the demo page.

The new target works by building Pyodide on a Docker container, and
then exporting the build artifacts back to the host.

The Dockerfile used by the new target is based on the Dockerfile which
was used for building Pyodide on the CI:
https://github.com/pygments/pyodide-artifacts/blob/master/container/Dockerfile

The main difference between the two is that the new Dockerfile uses the
newest Pyodide base image, which is built by a repository which is actively
maintained (the Iodide project is no longer maintained).

The purpose of this change is to allow running the demo locally,
which was not possible previously, as Pyodide was only built by the
CI when deploying to Github Pages.

* Add instructions on how to run the demo locally to the README

* Update demo to work with Pyodide v0.20

Remove usage of Pyodide functionality which was deprecated in Pyodide v0.17:

- Loading Pyodide using `languagePluginURL` and `languagePluginLoader`.
- Access to globals via `pyodide.globals.x` has changed to `pyodide.globals.get("x")`.

Source:
https://pyodide.org/en/stable/project/release-notes/v0.17.0.html?highlight=languageplugin#api-changes

* Fix #2137

* Fix use of `styles` variable before it's defined

The `styles` variable was being used before it's value was set (which
is done when Pyodide finishes loading).

* Remove GitHub action for building Pyodide

This action is obsolete, as building Pyodide is now done using `make pyodide`.

* Upgrade Pages deployment action version

* Add to .dockerignore all files in .gitignore

* Change `pyodide` target to be a phony target</pre>
</div>
</content>
</entry>
<entry>
<title>github: avoid running tests twice</title>
<updated>2022-02-08T07:17:22+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2022-02-08T07:17:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=caa017fdef4dcae610d0947245a0d89c268085cb'/>
<id>caa017fdef4dcae610d0947245a0d89c268085cb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump to Python 3.6 (closes #2059.)</title>
<updated>2022-02-01T18:46:01+00:00</updated>
<author>
<name>Matthäus G. Chajdas</name>
<email>dev@anteru.net</email>
</author>
<published>2022-02-01T18:46:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=f823d20fb0ceb6e65eca09264be117b421b26c6d'/>
<id>f823d20fb0ceb6e65eca09264be117b421b26c6d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>CI: Only deploy for upstream (#2036)</title>
<updated>2022-01-31T21:17:41+00:00</updated>
<author>
<name>Hugo van Kemenade</name>
<email>hugovk@users.noreply.github.com</email>
</author>
<published>2022-01-31T21:17:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=a8223e03992930bafa6c1a8bd976e9ecd8d8f566'/>
<id>a8223e03992930bafa6c1a8bd976e9ecd8d8f566</id>
<content type='text'>
* Only deploy for upstream

* Bump versions</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Only deploy for upstream

* Bump versions</pre>
</div>
</content>
</entry>
<entry>
<title>Disable PyPy3 in CI</title>
<updated>2021-11-29T18:32:29+00:00</updated>
<author>
<name>Matthäus G. Chajdas</name>
<email>Anteru@users.noreply.github.com</email>
</author>
<published>2021-11-29T18:32:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=5cd8700de4c80a0834e3d6c4b3ccf87042dd4162'/>
<id>5cd8700de4c80a0834e3d6c4b3ccf87042dd4162</id>
<content type='text'>
PyPy3 tests are very flaky and regularly cause false positives, yet we never saw PyPy3 actually failing where Python worked so the tests seem of limited value. Disabling for now until we find a more reliable way to run them.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PyPy3 tests are very flaky and regularly cause false positives, yet we never saw PyPy3 actually failing where Python worked so the tests seem of limited value. Disabling for now until we find a more reliable way to run them.</pre>
</div>
</content>
</entry>
<entry>
<title>Fix docs build.</title>
<updated>2021-11-14T12:48:40+00:00</updated>
<author>
<name>Matthäus G. Chajdas</name>
<email>Anteru@users.noreply.github.com</email>
</author>
<published>2021-11-14T12:48:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=c7362079f515826aa063a1e4302a6beb60abe6b7'/>
<id>c7362079f515826aa063a1e4302a6beb60abe6b7</id>
<content type='text'>
wcag-contrast-ratio is now a build-time dependency for the docs.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
wcag-contrast-ratio is now a build-time dependency for the docs.</pre>
</div>
</content>
</entry>
</feed>
