Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- 3.8
- 3.9
- '3.10'
- '3.11'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
pip install ruff
- name: Run Ruff
run: |
ruff djangocms_file
ruff check djangocms_file
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ exclude = [
".venv",
"**/migrations/**",
]
ignore = [
lint.ignore = [
"E501", # line too long
"F403", # 'from module import *' used; unable to detect undefined names
"E701", # multiple statements on one line (colon)
"F401", # module imported but unused
]
line-length = 119
select = [
lint.select = [
"I",
"E",
"F",
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,4 @@
zip_safe=False,
install_requires=REQUIREMENTS,
classifiers=CLASSIFIERS,
test_suite='tests.settings.run',
)
42 changes: 0 additions & 42 deletions tests/requirements/compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,48 +19,6 @@
] + sys.argv[1:]
# mysqlclient requirements found on each version's "Databases" documentation page:
# https://docs.djangoproject.com/en/3.0/ref/databases/#mysql-db-api-drivers
subprocess.run(
[
"python3.8",
*common_args,
"-P",
"Django>=3.2a1,<3.3",
"-P",
"django-cms>=3.8,<3.9",
"-o",
"py38-django32-cms38.txt",
],
check=True,
capture_output=True,
)
subprocess.run(
[
"python3.8",
*common_args,
"-P",
"Django>=3.2a1,<3.3",
"-P",
"django-cms>=3.9,<3.10",
"-o",
"py38-django32-cms39.txt",
],
check=True,
capture_output=True,
)
subprocess.run(
[
"python3.8",
*common_args,
"-P",
"Django>=3.2a1,<3.3",
"-P",
"django-cms>=3.10,<3.11",
"-o",
"py38-django32-cms310.txt",
],
check=True,
capture_output=True,
)
subprocess.run(
[
"python3.9",
Expand Down
109 changes: 0 additions & 109 deletions tests/requirements/py38-django32-cms310.txt

This file was deleted.

109 changes: 0 additions & 109 deletions tests/requirements/py38-django32-cms38.txt

This file was deleted.

Loading
Loading