Compare commits

...

3 Commits

Author SHA1 Message Date
Raphael Michel
a1c1df3e13 Bump to 3.17.2 2021-04-01 11:02:50 +02:00
Raphael Michel
027f133b5f Fix #2015 -- Shift operation into a later migration 2021-04-01 11:02:43 +02:00
Raphael Michel
05932495f0 GitLab: Move npm install command 2021-03-31 14:35:29 +02:00
4 changed files with 6 additions and 6 deletions

View File

@@ -24,11 +24,11 @@ pypi:
- XDG_CACHE_HOME=/cache pip3 install -Ur src/requirements.txt -r src/requirements/dev.txt
- cd src
- python setup.py sdist
- make npminstall
- pip install dist/pretix-*.tar.gz
- python -m pretix migrate
- python -m pretix check
- check-manifest
- make npminstall
- python setup.py sdist bdist_wheel
- twine check dist/*
- twine upload dist/*

View File

@@ -1 +1 @@
__version__ = "3.17.1"
__version__ = "3.17.2"

View File

@@ -47,8 +47,4 @@ class Migration(migrations.Migration):
clean_duplicates,
migrations.RunPython.noop,
),
migrations.AlterUniqueTogether(
name='questionanswer',
unique_together={('orderposition', 'question'), ('cartposition', 'question')},
),
]

View File

@@ -10,6 +10,10 @@ class Migration(migrations.Migration):
]
operations = [
migrations.AlterUniqueTogether(
name='questionanswer',
unique_together={('orderposition', 'question'), ('cartposition', 'question')},
),
migrations.RemoveField(
model_name='quota',
name='cached_availability_number',