Skip to content

Commit

Permalink
Merge pull request #61 from jgieseler/main
Browse files Browse the repository at this point in the history
clean up requirements
  • Loading branch information
jgieseler authored Aug 15, 2024
2 parents dcd535f + a5397ac commit b680998
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -129,3 +129,10 @@ dmypy.json
# Pyre type checker
.pyre/
.vscode/settings.json

### MacOS: https://raw.githubusercontent.com/github/gitignore/master/Global/macOS.gitignore

# General
.DS_Store
.AppleDouble
.LSOverride
6 changes: 1 addition & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,13 @@ astropy
astroquery
bs4
cdflib>=0.4.9
datetime
drms
h5netcdf
ipykernel
ipywidgets
lxml
matplotlib
mpl-animators>=1.0.0
numpy
pandas
pooch
requests
solo-epd-loader
sunpy>=4.1.0
zeep
2 changes: 1 addition & 1 deletion seppy/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from setuptools_scm import get_version
__version__ = get_version(root='..', relative_to=__file__)
except Exception:
__version__ = '0.1.13'
__version__ = '0.1.14'
8 changes: 3 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering :: Physics

[options]
Expand All @@ -29,20 +31,16 @@ install_requires =
astroquery
bs4
cdflib
datetime
drms
h5netcdf
ipykernel
ipywidgets
lxml
matplotlib
mpl-animators>=1.0.0
numpy
pandas
pooch
requests
solo-epd-loader
sunpy>=4.1.0
zeep


[options.extras_require]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{38,39,310}-test
py{38,39,310,311,312}-test
build_docs
codestyle
isolated_build = true
Expand Down

0 comments on commit b680998

Please sign in to comment.