Skip to content

Commit

Permalink
Merge pull request #55 from CDJellen/user/cjellen/installation-instru…
Browse files Browse the repository at this point in the history
…ctions

Update CI for pythob 3.12
  • Loading branch information
CDJellen authored Nov 19, 2024
2 parents ceba4d2 + 12c97f4 commit 859d004
Show file tree
Hide file tree
Showing 5 changed files with 264 additions and 220 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10"]
python-version: ["3.9", "3.10", "3.12"]
steps:
- uses: actions/checkout@v2
with:
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,26 @@ Please see [the included example notebook](/notebooks/overview.ipynb) for a more
[^3]: https://www.ndbc.noaa.gov/docs/ndbc_web_data_guide.pdf



#### Installation
The `ndbc-api` can be installed via PIP:

```sh
pip install ndbc-api
```

Conda users can install the `ndbc-api` via the `conda-forge` channel:

```sh
conda install -c conda-forge ndbc-api
```

Finally, to install the `ndbc-api` from source, clone the repository and run the following command:

```sh
python setup.py install
```

#### Requirements
The `ndbc-api` has been tested on Python 3.6, 3.7, 3.8, 3.9, and 3.10. Python 2 support is not currently planned, but could be implemented based on the needs of the atmospheric research community.

Expand Down
Loading

0 comments on commit 859d004

Please sign in to comment.