-
Notifications
You must be signed in to change notification settings - Fork 3
MAINT: pyproject, pysat style updates #137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
6b7ca54
MAINT: update to use pyproject
jklenzing 40bb8c9
MAINT: update workflows
jklenzing ee6f919
MAINT: update doc conf
jklenzing accbd36
MAINT: turn off tiegcm icon downloads
jklenzing 4b6706f
MAINT: use new test instruments
jklenzing 713f68c
MAINT: remove code for unsupported pysat versions
jklenzing 8ce23a9
STY: pep8
jklenzing 391edca
MAINT: turn off new tests for now
jklenzing 148202a
MAINT: remove pysatNASA cap
jklenzing 1dbf850
DOC: update changelog
jklenzing aa3458d
MAINT: update link
jklenzing d907080
BUG: update reqs
jklenzing 47870a8
BUG: backwards compat for pandas <1.4
jklenzing 2970c4d
DOC: update readme
jklenzing c85f2fb
MAINT: add readthedocs yaml
jklenzing c99f471
DOC: update changelog
jklenzing c127442
MAINT: apply pysatnasa cap
jklenzing 4ce2fda
Apply suggestions from code review
jklenzing File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # .readthedocs.yml | ||
| # Read the Docs configuration file | ||
| # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
|
||
| # Required | ||
| version: 2 | ||
|
|
||
| # Set the version of Python and other tools you might need | ||
| build: | ||
| os: ubuntu-22.04 | ||
| tools: | ||
| python: "3.10" | ||
|
|
||
| # Build documentation in the docs/ directory with Sphinx | ||
| sphinx: | ||
| configuration: docs/conf.py | ||
|
|
||
|
|
||
| # Optionally declare the Python requirements required to build your docs | ||
| python: | ||
| install: | ||
| - method: pip | ||
| path: . | ||
| extra_requirements: | ||
| - doc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,75 @@ | ||
| [build-system] | ||
| requires = ["setuptools >= 38.6", "pip >= 10"] | ||
| build-backend = "setuptools.build_meta" | ||
|
|
||
| [project] | ||
| name = "pysatModels" | ||
| version = "0.1.0" | ||
| description = "Supports model analysis and model-data comparisons" | ||
| readme = "README.md" | ||
| requires-python = ">=3.6" | ||
| license = {file = "LICENSE"} | ||
| authors = [ | ||
| {name = "Pysat Development Team", email = "pysat.developers@gmail.com"}, | ||
| ] | ||
| classifiers = [ | ||
| "Development Status :: 3 - Alpha", | ||
| "Topic :: Scientific/Engineering :: Physics", | ||
| "Intended Audience :: Science/Research", | ||
| "License :: Freely Distributable", | ||
| "Natural Language :: English", | ||
| "Programming Language :: Python :: 3", | ||
| "Programming Language :: Python :: 3.6", | ||
| "Programming Language :: Python :: 3.9", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3.11", | ||
| "Operating System :: MacOS :: MacOS X", | ||
| "Operating System :: POSIX :: Linux", | ||
| "Operating System :: Microsoft :: Windows" | ||
| ] | ||
| dependencies = [ | ||
| "numpy", | ||
| "packaging", | ||
| "pandas", | ||
| "pyForecastTools", | ||
| "pysat >= 3.0.4", | ||
| "pysatNASA <= 0.0.4", | ||
| "requests", | ||
| "scipy", | ||
| "xarray" | ||
| ] | ||
|
|
||
| [project.optional-dependencies] | ||
| test = [ | ||
| "coveralls < 3.3", | ||
| "flake8", | ||
| "flake8-docstrings", | ||
| "hacking >= 1.0", | ||
| "pytest-cov", | ||
| "pytest-ordering" | ||
| ] | ||
| doc = [ | ||
| "extras_require", | ||
| "m2r2", | ||
| "numpydoc", | ||
| "sphinx", | ||
| "sphinx_rtd_theme >= 1.2.2, < 2.0.0" | ||
| ] | ||
|
|
||
| [project.urls] | ||
| Documentation = "https://pysatmodels.readthedocs.io/en/latest/" | ||
| Source = "https://github.com/pysat/pysatModels" | ||
|
|
||
| [tool.coverage.report] | ||
|
|
||
| [tool.pytest.ini_options] | ||
| addopts = "--cov=pysatModels" | ||
| markers = [ | ||
| "all_inst", | ||
| "download", | ||
| "no_download", | ||
| "load_options", | ||
| "new_tests", | ||
| "first", | ||
| "second" | ||
| ] | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.