Skip to content

Commit

Permalink
Test on GitHub Actions with Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Feb 2, 2023
1 parent 1749cdb commit 39b9930
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 8 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,39 @@ jobs:
- name: Run pre-commit
uses: pre-commit/action@v3.0.0

# *************************************
# ************* Python 3.5 ************
# *************************************
test-python-35:
runs-on: ubuntu-16.04
strategy:
fail-fast: false
max-parallel: 5
matrix:
include:
- python-version: '3.5'
tox_env: py35
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pip-tools
pip-compile requirements/testing.in
#pip-compile requirements/release.in
pip install -r requirements/testing.txt # -r requirements/release.txt
- name: Run Tests
run: tox -e ${{ matrix.tox_env }}
- name: Coveralls
uses: AndreMiras/coveralls-python-action@develop
with:
parallel: true
flag-name: Run Tests

# *************************************
# ************* Python 3.6 ************
# *************************************
Expand Down
7 changes: 1 addition & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,12 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.12.8
0.12.7
------
2023-02-01

- Make sure to fail silently on bad URL patterns.
- Tested against Python 3.11.

0.12.7
------
2021-11-19

- Tested against Python 3.10.
- Updated bundled tld names.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
except Exception:
readme = ""

version = "0.12.8"
version = "0.12.7"

py_where = "./src"
py_package_dir = "src"
Expand Down
2 changes: 1 addition & 1 deletion src/tld/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
)

__title__ = "tld"
__version__ = "0.12.8"
__version__ = "0.12.7"
__author__ = "Artur Barseghyan"
__copyright__ = "2013-2023 Artur Barseghyan"
__license__ = "MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later"
Expand Down

0 comments on commit 39b9930

Please sign in to comment.