From b5105ca1d91462e5a8b576561f94d89b63982980 Mon Sep 17 00:00:00 2001 From: Alex Dusenbery Date: Mon, 23 Sep 2019 09:44:31 -0400 Subject: [PATCH] Upgrade super-csv==0.9.3 --- .github/PULL_REQUEST_TEMPLATE.md | 22 ---------------------- .gitignore | 3 +++ CHANGELOG.rst | 5 ++++- bulk_grades/__init__.py | 2 +- requirements/base.txt | 2 +- requirements/dev.txt | 2 +- requirements/doc.txt | 2 +- requirements/pip-tools.txt | 4 ++++ requirements/quality.txt | 2 +- requirements/test.txt | 2 +- 10 files changed, 17 insertions(+), 29 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index c1cad6b..9531f85 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -2,24 +2,6 @@ **JIRA:** Link to JIRA ticket -**Dependencies:** dependencies on other outstanding PRs, issues, etc. - -**Merge deadline:** List merge deadline (if any) - -**Installation instructions:** List any non-trivial installation -instructions. - -**Testing instructions:** - -1. Open page A -2. Do thing B -3. Expect C to happen -4. If D happened instead - check failed. - -**Reviewers:** -- [ ] tag reviewer -- [ ] tag reviewer - **Merge checklist:** - [ ] All reviewers approved - [ ] CI build is green @@ -33,7 +15,3 @@ instructions. - [ ] Check new version is pushed to PyPI after tag-triggered build is finished. - [ ] Delete working branch (if not needed anymore) - -**Author concerns:** List any concerns about this PR - inelegant -solutions, hacks, quick-and-dirty implementations, concerns about -migrations, etc. diff --git a/.gitignore b/.gitignore index 87d55e8..f51d96b 100644 --- a/.gitignore +++ b/.gitignore @@ -77,3 +77,6 @@ tests/__init__.py # Development task artifacts default.db + +# virtualenvs +bulk-grades-env/ \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e4334ad..7dda605 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -13,9 +13,12 @@ Change Log Unreleased ~~~~~~~~~~ - * +[0.6.2] - 2019-09-23 +~~~~~~~~~~~~~~~~~~~~~ +* Upgrade super-csv to 0.9.3 + [0.6.1] - 2019-09-17 ~~~~~~~~~~~~~~~~~~~~~ * Call grades api with `comment` when doing bulk upload diff --git a/bulk_grades/__init__.py b/bulk_grades/__init__.py index 86318c4..f6a2a78 100644 --- a/bulk_grades/__init__.py +++ b/bulk_grades/__init__.py @@ -4,6 +4,6 @@ from __future__ import absolute_import, unicode_literals -__version__ = '0.6.1' +__version__ = '0.6.2' default_app_config = 'bulk_grades.apps.BulkGradesConfig' # pylint: disable=invalid-name diff --git a/requirements/base.txt b/requirements/base.txt index e5856d1..a83494f 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -25,5 +25,5 @@ requests==2.22.0 six==1.12.0 # via edx-opaque-keys, stevedore slumber==0.7.1 stevedore==1.31.0 # via edx-opaque-keys -super-csv==0.9.2 +super-csv==0.9.3 urllib3==1.25.3 # via requests diff --git a/requirements/dev.txt b/requirements/dev.txt index 3ab2bec..7490e72 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -79,7 +79,7 @@ six==1.12.0 slumber==0.7.1 snowballstemmer==1.9.1 stevedore==1.31.0 -super-csv==0.9.2 +super-csv==0.9.3 text-unidecode==1.2 toml==0.10.0 tox-battery==0.5.1 diff --git a/requirements/doc.txt b/requirements/doc.txt index 1791d18..b39a3c9 100644 --- a/requirements/doc.txt +++ b/requirements/doc.txt @@ -62,7 +62,7 @@ snowballstemmer==1.9.1 # via sphinx sphinx==1.8.5 sphinxcontrib-websupport==1.1.2 # via sphinx stevedore==1.31.0 -super-csv==0.9.2 +super-csv==0.9.3 text-unidecode==1.2 typing==3.7.4.1 # via sphinx urllib3==1.25.3 diff --git a/requirements/pip-tools.txt b/requirements/pip-tools.txt index 6ab335c..6bb679d 100644 --- a/requirements/pip-tools.txt +++ b/requirements/pip-tools.txt @@ -4,6 +4,10 @@ # # make upgrade # +--index-url http://edx.devstack.devpi:3141/root/pypi/+simple/ +--extra-index-url https://pypi.python.org/simple +--trusted-host edx.devstack.devpi + click==7.0 # via pip-tools pip-tools==4.1.0 six==1.12.0 # via pip-tools diff --git a/requirements/quality.txt b/requirements/quality.txt index e34433f..841e1a8 100644 --- a/requirements/quality.txt +++ b/requirements/quality.txt @@ -69,7 +69,7 @@ six==1.12.0 slumber==0.7.1 snowballstemmer==1.9.1 # via pydocstyle stevedore==1.31.0 -super-csv==0.9.2 +super-csv==0.9.3 text-unidecode==1.2 urllib3==1.25.3 wcwidth==0.1.7 diff --git a/requirements/test.txt b/requirements/test.txt index 48ecc45..ca69585 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -48,7 +48,7 @@ scandir==1.10.0 # via pathlib2 six==1.12.0 slumber==0.7.1 stevedore==1.31.0 -super-csv==0.9.2 +super-csv==0.9.3 text-unidecode==1.2 # via python-slugify urllib3==1.25.3 wcwidth==0.1.7 # via pytest