Skip to content
Snippets Groups Projects
Commit bec284b0 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Merge branch 'build-pypi' into 'master'

Build pypi package and reformat. Advances AlekSIS-Core#317

See merge request !36
parents 5ffdd3f8 5a305e8a
No related branches found
No related tags found
1 merge request!36Build pypi package and reformat. Advances AlekSIS/official/AlekSIS-Core#317
Pipeline #4432 passed
...@@ -5,3 +5,5 @@ include: ...@@ -5,3 +5,5 @@ include:
file: /ci/test.yml file: /ci/test.yml
- project: "AlekSIS/official/AlekSIS" - project: "AlekSIS/official/AlekSIS"
file: /ci/build_dist.yml file: /ci/build_dist.yml
- project: "AlekSIS/official/AlekSIS"
file: /ci/deploy_pypi.yml
from django.core.management.base import BaseCommand from django.core.management.base import BaseCommand
from ...tasks import untis_import_mysql_all_terms, untis_import_mysql_current_term from ...tasks import untis_import_mysql_all_terms
class Command(BaseCommand): class Command(BaseCommand):
......
...@@ -34,7 +34,6 @@ def get_terms_for_date(for_date: Optional[date] = None) -> QuerySet: ...@@ -34,7 +34,6 @@ def get_terms_for_date(for_date: Optional[date] = None) -> QuerySet:
def get_future_terms_for_date(for_date: Optional[date] = None) -> QuerySet: def get_future_terms_for_date(for_date: Optional[date] = None) -> QuerySet:
"""Get all furture terms (after the current term).""" """Get all furture terms (after the current term)."""
if not for_date: if not for_date:
for_date = timezone.now().date() for_date = timezone.now().date()
......
This diff is collapsed.
...@@ -23,13 +23,18 @@ classifiers = [ ...@@ -23,13 +23,18 @@ classifiers = [
"Typing :: Typed", "Typing :: Typed",
] ]
[[tool.poetry.source]]
name = "gitlab"
url = "https://edugit.org/api/v4/projects/461/packages/pypi/simple"
secondary = true
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.7" python = "^3.7"
AlekSIS = { git = "https://edugit.org/AlekSIS/official/AlekSIS" }
AlekSIS-App-Chronos = { git = "https://edugit.org/AlekSIS/official/AlekSIS-App-Chronos" }
mysqlclient = "^2.0.0" mysqlclient = "^2.0.0"
tqdm = "^4.44.1" tqdm = "^4.44.1"
defusedxml = "^0.6.0" defusedxml = "^0.6.0"
aleksis-core = {version = "^2.0a3.dev0+20201114132749.88d92354", allow-prereleases = true}
aleksis-app-chronos = "^2.0a3.dev0+20201114181205.58815f85"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
sphinx = "^3.0" sphinx = "^3.0"
......
...@@ -22,9 +22,9 @@ setenv = ...@@ -22,9 +22,9 @@ setenv =
[testenv:lint] [testenv:lint]
commands = commands =
- poetry run black --check --diff aleksis/ --exclude "migrations" - poetry run black --check --diff aleksis/
- poetry run isort -c --diff --stdout -rc -s migrations aleksis/ - poetry run isort -c --diff --stdout aleksis/
- poetry run flake8 {posargs} --exclude-from-doctest migrations aleksis/ poetry run flake8 {posargs} aleksis/
[testenv:security] [testenv:security]
commands = commands =
...@@ -40,7 +40,7 @@ commands = poetry run make -C docs/ html {posargs} ...@@ -40,7 +40,7 @@ commands = poetry run make -C docs/ html {posargs}
[testenv:reformat] [testenv:reformat]
commands = commands =
poetry run isort -rc aleksis/ poetry run isort aleksis/
poetry run black aleksis/ poetry run black aleksis/
[flake8] [flake8]
...@@ -52,10 +52,10 @@ ignore = BLK100,E203,E231,W503,D100,D101,D102,D103,D104,D105,D106,D107,RST215,RS ...@@ -52,10 +52,10 @@ ignore = BLK100,E203,E231,W503,D100,D101,D102,D103,D104,D105,D106,D107,RST215,RS
line_length = 100 line_length = 100
multi_line_output = 3 multi_line_output = 3
include_trailing_comma = 1 include_trailing_comma = 1
use_parantheses = 1
default_section = THIRDPARTY default_section = THIRDPARTY
known_first_party = aleksis known_first_party = aleksis
known_django = django known_django = django
skip = migrations
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[mypy] [mypy]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment