Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
pfouque committed Apr 29, 2024
1 parent 4f2a976 commit 9857b1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- name: Install gettext
run: |
sudo apt-get update && sudo apt-get install -y gettext
sudo apt-get update && sudo apt-get install -y --no-install-recommends gettext
- uses: actions/checkout@v4

Expand All @@ -41,9 +41,6 @@ jobs:
- name: Install requirements
run: poetry install

# - name: Install django ${{ matrix.django-version }}
# run: poetry add "django@~=${{ matrix.django-version }}"

- name: Django check
run: poetry run python manage.py check

Expand Down
8 changes: 2 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "django-fakemessages"
version = "0.0.1"
description = "Generate fake language files"
description = "Generate fake PO language files"
license = "MIT"
authors = [
"Pascal Fouque <fouquepascal@gmail.com>",
Expand Down Expand Up @@ -33,7 +33,7 @@ packages = [{ include = "fakemessages" }]

[tool.poetry.dependencies]
python = "^3.8"
django = "^3.2 || ^4.0 || ^4.1 || ^4.2"
django = "^4.2 || ^5.0"
translate-toolkit = "^3.8.5"

[tool.poetry.group.dev.dependencies]
Expand All @@ -49,10 +49,6 @@ pytest-randomly = "*"
pytest-xdist = "*"
ruff = "*"

[tool.black]
line-length = 90
target-version = ['py38']

[tool.ruff]
line-length = 90
target-version = "py38"
Expand Down
3 changes: 0 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ deps =

commands = {posargs:python -m pytest}

[flake8]
max-line-length = 130

[gh-actions]
python =
3.8: py38
Expand Down

0 comments on commit 9857b1f

Please sign in to comment.