@@ -20,22 +20,21 @@ classifiers =
2020 Operating System :: OS Independent
2121 Programming Language :: Python
2222 Programming Language :: Python :: 3
23- Programming Language :: Python :: 3.8
2423 Programming Language :: Python :: 3.9
2524 Programming Language :: Python :: 3.10
2625 Programming Language :: Python :: 3.11
2726 Topic :: Scientific/Engineering :: Physics
2827
2928[options]
3029zip_safe = False
31- python_requires = >=3.8
30+ python_requires = >=3.9
3231packages = find:
3332include_package_data = True
3433setup_requires =
3534 setuptools_scm
3635install_requires =
3736 scipy
38- sunpy[net,timeseries]>=4 .0.0
37+ sunpy[net,timeseries]>=5 .0.0
3938
4039[options.extras_require]
4140tests =
4645 sphinx-changelog
4746 sphinx-gallery
4847 sunpy-sphinx-theme
49- # Not a direct dependency, but we need to pin this until sphinx-changelog is updated ( see #6668)
50- towncrier<22.12.0
48+ # Remove next line when fixed in towncrier; see https://github.com/twisted/towncrier/issues/528
49+ importlib-resources<6
5150
5251[options.packages.find]
5352exclude = sunkit_instruments._dev
@@ -82,33 +81,12 @@ filterwarnings =
8281 ignore:numpy.ndarray size changed:RuntimeWarning
8382 ignore:distutils Version classes are deprecated. Use packaging.version instead:DeprecationWarning
8483 ignore:Unknown units for CHANNEL:sunpy.util.exceptions.SunpyUserWarning
84+ ignore:.*is deprecated and slated for removal in Python 3:DeprecationWarning
8585
86- [pycodestyle]
87- max_line_length = 100
88-
89- [flake8]
90- max-line-length = 100
91- exclude =
92- .git,
93- __pycache__,
94- docs/conf.py,
95- build,
96- rst-directives =
97- plot
9886
9987[isort]
100- balanced_wrapping = True
101- skip =docs/conf.py
102- default_section = THIRDPARTY
103- include_trailing_comma = True
104- known_astropy = astropy, asdf, sunpy
105- known_first_party = sunkit_instruments
106- length_sort = False
107- length_sort_sections =stdlib
10888line_length = 110
109- multi_line_output = 3
110- no_lines_before = LOCALFOLDER
111- sections = STDLIB, THIRDPARTY, ASTROPY, FIRSTPARTY, LOCALFOLDER
89+ profile = black
11290
11391[coverage:run]
11492omit =
0 commit comments