Skip to content

Commit

Permalink
Revert "Merge branch 'main' into get_angles_without_tle"
Browse files Browse the repository at this point in the history
This reverts commit 2a2d2f9, reversing
changes made to 23c1e0f.
  • Loading branch information
mraspaud committed Jun 18, 2021
1 parent 2a2d2f9 commit ebb37a8
Show file tree
Hide file tree
Showing 34 changed files with 7,723 additions and 3,191 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[bumpversion]
current_version = 1.4.0
current_version = 1.3.1
commit = True
tag = True

[bumpversion:file:pygac/version.py]

49 changes: 0 additions & 49 deletions .github/workflows/ci.yaml

This file was deleted.

3 changes: 1 addition & 2 deletions .stickler.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
linters:
flake8:
fixer: true
python: 3
config: setup.cfg
max-line-length: 120
fixers:
enable: true
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
language: python
python:
- "2.7_with_system_site_packages"
- "3.7"
# command to install dependencies, e.g.
install:
- pip install -r requirements.txt
- pip install .
- pip install coveralls
# command to run tests, e.g. python setup.py test
env: PYGAC_CONFIG_FILE=etc/pygac.cfg.template
script: coverage run --source=pygac setup.py test
before_install:
- sudo apt-get install -qq python-numpy python-h5py python-scipy libhdf5-serial-dev
after_success: coveralls
deploy:
provider: pypi
user: adybbroe
password:
secure: FznD38SHxuj1RoFXUqLstF//O3+pypF84hCOHO8A3Poa+ygh7X4a+9aimCeiuY9d+5tbE0ZlyG7LMcCOFA3JCvH7lUChmQbbn3pcFvJdJzzYQgxYNfvCL9YtjRF/n648bVdpN265hm07rmOe7DHbysw4q8hMlxtUH87MYctRg90=
on:
tags: true
repo: pytroll/pygac
branch: master
30 changes: 0 additions & 30 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,3 @@
## Version 1.4.0 (2020/08/06)

### Issues Closed

* [Issue 66](https://github.com/pytroll/pygac/issues/66) - Typos in calibration coefficients ([PR 67](https://github.com/pytroll/pygac/pull/67))
* [Issue 62](https://github.com/pytroll/pygac/issues/62) - Computation of Earth scene radiance ([PR 58](https://github.com/pytroll/pygac/pull/58))
* [Issue 60](https://github.com/pytroll/pygac/issues/60) - Improve readability of quality indicators bit unpacking ([PR 72](https://github.com/pytroll/pygac/pull/72))
* [Issue 57](https://github.com/pytroll/pygac/issues/57) - channel 4 BT to radiance conversion ([PR 67](https://github.com/pytroll/pygac/pull/67))
* [Issue 54](https://github.com/pytroll/pygac/issues/54) - Function check_file_version should not be part of pygac-run ([PR 55](https://github.com/pytroll/pygac/pull/55))
* [Issue 47](https://github.com/pytroll/pygac/issues/47) - Fix reading of renamed files

In this release 6 issues were closed.

### Pull Requests Merged

#### Bugs fixed

* [PR 73](https://github.com/pytroll/pygac/pull/73) - Fix azimuth encoding
* [PR 67](https://github.com/pytroll/pygac/pull/67) - Correct coefficients ([66](https://github.com/pytroll/pygac/issues/66), [57](https://github.com/pytroll/pygac/issues/57))

#### Features added

* [PR 72](https://github.com/pytroll/pygac/pull/72) - Quality indicators ([60](https://github.com/pytroll/pygac/issues/60))
* [PR 71](https://github.com/pytroll/pygac/pull/71) - Expose new metadata
* [PR 70](https://github.com/pytroll/pygac/pull/70) - Remove config dependency from reader class
* [PR 58](https://github.com/pytroll/pygac/pull/58) - export coefficients to json file ([62](https://github.com/pytroll/pygac/issues/62))
* [PR 55](https://github.com/pytroll/pygac/pull/55) - Refactor gac-run ([54](https://github.com/pytroll/pygac/issues/54))

In this release 7 pull requests were closed.

## Version v1.3.1 (2020/02/07)

### Issues Closed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pygac
=====

[![Build](https://github.com/pytroll/pygac/actions/workflows/ci.yaml/badge.svg)](https://github.com/pytroll/pygac/actions/workflows/ci.yaml)
[![Coverage](https://codecov.io/gh/pytroll/pygac/branch/main/graph/badge.svg?token=DQMgf2LxuM)](https://codecov.io/gh/pytroll/pygac)
[![Build Status](https://travis-ci.org/adybbroe/pygac.png?branch=feature-clock)](https://travis-ci.org/pytroll/pygac)
[![Coverage Status](https://coveralls.io/repos/adybbroe/pygac/badge.png?branch=feature-clock)](https://coveralls.io/r/pytroll/pygac?branch=develop)


A python package to read, calibrate and navigate NOAA and Metop AVHRR GAC and LAC data.
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Releasing Pygac

1. checkout main branch
1. checkout master
2. pull from repo
3. run the unittests
4. run `loghub`. Replace <github username> and <previous version> with proper
Expand Down
Loading

0 comments on commit ebb37a8

Please sign in to comment.