Skip to content

Commit

Permalink
wrong classifiers (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
nabobalis committed May 8, 2020
1 parent cede8e2 commit 12d5e01
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
version: 2.1

no-backports: &no-backports
name: Skip any branches called backport*
name: Skip any branches called cherry-pick
command: |
if [[ "${CIRCLE_BRANCH}" = *"backport"* ]]; then
if [[ "${CIRCLE_BRANCH}" == *"cherry-pick"* || "${CIRCLE_BRANCH}" == *"backport"* ]]; then
circleci step halt
fi
Expand Down
2 changes: 1 addition & 1 deletion .sunpy-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default_context:
short_description: A Python wrapper for Fourier Local Correlation Tracking.
author_name: The SunPy Developers
author_email: sunpy@googlegroups.com
license: LGPL-2.1
license: LGPLv2+
project_url: https://sunpy.org
github_repo: sunpy/pyflct
minimum_python_version: 3.6
Expand Down
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@
name = pyflct
author = The SunPy Developers
author_email = sunpy@googlegroups.com
license = LGPL-2.1
license = LGPLv2+
license_file = LICENSE.rst
url = https://docs.sunpy.org/projects/pyflct/
description = A Python wrapper for Fourier Local Correlation Tracking.
long_description = file: README.rst
long_description_content_type = text/x-rst
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Lesser General Public License V2.1 (LGPLV2.1)
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Natural Language :: English
Operating System :: MacOS
Operating System :: POSIX :: Linux
Operating System :: Windows
Operating System :: Microsoft :: Windows :: Windows 10
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Expand Down

0 comments on commit 12d5e01

Please sign in to comment.