Skip to content

Commit

Permalink
[WIP] bootstrap5 + icons (#124)
Browse files Browse the repository at this point in the history
* bootstrap5

* update ci py version

* update tox python version

* update tox python version

* use , sperator in tox passenv

* use allowlist_externals

* add './' in allowlist_externals

* pin selenium version

* fix select2 test

* fix select2 test

* fix select2 multiple test

* fix select2 multiple test

* fix select2 X test

* fix selenium tests

* fix linting && use new python, pypy version

* fix flake8

* fix restructured text https://stackoverflow.com/a/39720161/1154966 does not work

* fix unofficial-deformdemo (it never worked)

* removed six; reactivated validation (do we still need it?)

* make isort happy

* update python version in docs, setup.py; added me to contributors

* list specific python versions; update ci python setup
  • Loading branch information
delijati authored Nov 14, 2023
1 parent 844ddd2 commit 35d58c9
Show file tree
Hide file tree
Showing 18 changed files with 157 additions and 363 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ jobs:
strategy:
matrix:
py:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "pypy3"
- "3.10"
- "3.11"
- "3.12"
- "pypy-3.10"
os:
- "ubuntu-latest"
architecture:
Expand All @@ -35,7 +36,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
architecture: ${{ matrix.architecture }}
Expand All @@ -57,9 +58,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.11
architecture: x64
- run: |
pip install tox
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,4 @@ Contributors
- Steve Piercy 2020/05/11
- John Haiducek 2020/06/20
- Maksym Shalenyi 2020/06/20
- Josip Delić 2023/11/14
18 changes: 9 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Deform Demo

Demonstration application for the `Deform <https://docs.pylonsproject.org/projects/deform/en/latest>`_ Python HTML form library.

This application is tested on Python versions 3.6, 3.7, 3.8, and 3.9, and PyPy3.
This application is tested on Python versions 3.8, 3.9, 3.10, 3.11, and 3.12, and PyPy3.


Online version
Expand Down Expand Up @@ -108,8 +108,8 @@ It performs editable installs of Colander and Deform into your virtual environme
Install Firefox latest
^^^^^^^^^^^^^^^^^^^^^^

macOS
"""""
macOS Firefox
"""""""""""""

`Download the latest version of Firefox for your platform <https://www.mozilla.org/en-US/firefox/all/>`_.

Expand All @@ -119,8 +119,8 @@ Open the ``.dmg`` (macOS), and drag the Firefox icon to:
~/projects/deformdemo/
Linux (Debian)
""""""""""""""
Linux (Debian) Firefox
""""""""""""""""""""""

Use cURL or wget.
See the `Firefox download README.txt <https://ftp.mozilla.org/pub/firefox/releases/latest/README.txt>`_ for instructions.
Expand Down Expand Up @@ -161,8 +161,8 @@ gettext
The functional tests require the installation of the GNU ``gettext`` utilities, specifically ``msgmerge`` and ``msgfmt``.
Use your package manager to install these requirements.

macOS
"""""
macOS gettext
"""""""""""""

Use `Homebrew <https://brew.sh/>`_.

Expand All @@ -177,8 +177,8 @@ If you ever have problems building packages, you can always unlink it.
brew unlink gettext
Linux (Debian)
""""""""""""""
Linux (Debian) gettext
""""""""""""""""""""""

.. code-block:: bash
Expand Down
Loading

0 comments on commit 35d58c9

Please sign in to comment.