Skip to content

Commit

Permalink
STY: Updates per pysatModels #98
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoneback committed Feb 23, 2022
1 parent 15213de commit c243bc9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
10 changes: 7 additions & 3 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ your test configuration
- Test B

**Test Configuration**:
* Operating system
* Version number
* Any details about your local setup that are relevant
* Operating system: Hal
* Version number: Python 3.X
* Any details about your local setup that are relevant: pysat version X

# Checklist:

Expand All @@ -42,3 +42,7 @@ your test configuration
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged and published in downstream modules
- [ ] Add a note to ``CHANGELOG.md``, summarizing the changes

If this is a release PR, replace the first item of the above checklist with the
release checklist on the pysat wiki:
https://github.com/pysat/pysat/wiki/Checklist-for-Release
11 changes: 10 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7]
python-version: ["3.9", "3.10"]
os: [ubuntu-latest]
include:
- python-version: "3.8"
numpy_ver: "1.19"
os: "ubuntu-latest"

name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand All @@ -28,6 +32,11 @@ jobs:
pip install -r test_requirements.txt
pip install -r requirements.txt
- name: Install NEP29 dependencies
if: ${{ matrix.numpy_ver != 'latest'}}
run: |
pip install --no-binary :numpy: numpy==${{ matrix.numpy_ver }}
- name: Test PEP8 compliance
run: flake8 . --count --select=E,F,W --show-source --statistics

Expand Down
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
name = pysatCDF
version = 0.3.1
url = https://github.com/pysat/pysatCDF
author = Russell A. Stoneback
author_email = github@stoneris.com
author = Russell A. Stoneback, et al.
author_email = pysat.developers@gmail.com
description = 'Simple NASA Common Data Format (CDF) File reader.'
long_description = file: README.md, CHANGELOG.md
long_description_content_type = text/markdown
Expand All @@ -18,6 +18,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Operating System :: POSIX :: Linux
Operating System :: POSIX :: MacOS X
keywords =
CDF
NASA
Expand Down

0 comments on commit c243bc9

Please sign in to comment.