Skip to content

Commit

Permalink
Merge pull request #47 from pysat/rc0_2_1
Browse files Browse the repository at this point in the history
Pull RC0.2.1 back into develop
  • Loading branch information
jklenzing authored Nov 18, 2024
2 parents 5f72686 + 173110c commit 562a32e
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ solve the problem.

## Test configuration
- OS: [e.g., Hal]
- Version [e.g., Python 3.47]
- Version: [e.g., Python 3.47]
- Other details about your setup that could be relevant

# Additional context
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ __pycache__/

# Distribution / packaging
.Python
.python-version
env/
build/
develop-eggs/
Expand Down
25 changes: 25 additions & 0 deletions .readthedocs.yml
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.11"

# 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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [0.2.1] - 202X-XX-XX
## [0.2.1] - 2024-11-08
- Maintenance
- Update pytest syntax
- Update Github Actions workflows
Expand All @@ -13,6 +13,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Implement coveralls app for GitHub Actions
- Update contributing document and issue templates
- Add Acknowledgements doc
- Set minimum pysat to 3.2.0

## [0.2.0] - 2022-08-12
- New Features
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@



pysatSeasons allows users to run seasonal data analyses over N-dimensional
pysatSeasons allows users to run seasonal data analyses over N-dimensional
data sets managed through the pysat module.

Main Features
Expand All @@ -27,11 +27,11 @@ Main Features
### Prerequisites

pysatSeasons uses common Python modules, as well as modules developed by
and for the Space Physics community.
and for the Space Physics community.

| Common modules | Community modules |
| -------------- | ----------------- |
| matplotlib | pysat >= 3.0.4 |
| matplotlib | pysat >= 3.2.0 |
| numpy | |
| pandas | |
| xarray | |
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages = ["pysatSeasons"]

[project]
name = "pysatSeasons"
version = "0.2.0"
version = "0.2.1"
description = "Seasonal analysis routines for pysat"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -24,7 +24,6 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -47,7 +46,7 @@ dependencies = [
"matplotlib",
"numpy",
"pandas",
"pysat >= 3.0.4",
"pysat >= 3.2.0",
"xarray"
]

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
matplotlib
numpy
pandas
pysat>=3.0.4
pysat>=3.2.0
xarray

0 comments on commit 562a32e

Please sign in to comment.