Skip to content

Commit

Permalink
Merge pull request #17 from TUW-GEO/rdy4release
Browse files Browse the repository at this point in the history
Preparing everything for v0.0.6
  • Loading branch information
bbauerma authored Apr 29, 2020
2 parents 1e15436 + 11192e4 commit 2f308bc
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 53 deletions.
50 changes: 0 additions & 50 deletions .gitlab-ci.yml

This file was deleted.

12 changes: 12 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2

sphinx:
configuration: docs/conf.py

python:
install:
- method: pip
path: .

conda:
environment: conda_env.yml
41 changes: 41 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
dist: xenial
os:
- linux
services:
- xvfb
language: python
sudo: false
addons:
apt:
packages:
- gfortran
- gcc
- libgrib-api-dev
notifications:
email: false
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "3.6"
install:
- wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda env create -f conda_env.yml
- source activate geopathfinder
- python setup.py install
- pip list
- conda list
- which pip
- which python

script:
- python setup.py test
after_success:
# report coverage results to coveralls.io
- pip install coveralls
- coveralls
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
Changelog
=========

Version v0.0.6
==============

- class restructuring to use the `from_filename` classmethod instead of always creating a new external parsing function
- minor restructuring of the existing file naming conventions
- added new file naming convention BMON
- minor bug removal

Version v0.0.5
==============

Expand Down
17 changes: 14 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
=============
geopathfinder
=============
.. image:: https://travis-ci.org/TUW-GEO/geopathfinder.svg?branch=master
:target: https://travis-ci.org/TUW-GEO/geopathfinder

.. image:: https://coveralls.io/repos/github/TUW-GEO/geopathfinder/badge.svg?branch=master
:target: https://coveralls.io/github/TUW-GEO/geopathfinder?branch=master

.. image:: https://badge.fury.io/py/geopathfinder.svg
:target: https://badge.fury.io/py/geopathfinder

.. image:: https://readthedocs.org/projects/geopathfinder/badge/?version=latest
:target: https://geopathfinder.readthedocs.io/en/latest/?badge=latest

A package for creating, quering, and searching in data structures holding geo data sets.
.. image:: https://img.shields.io/badge/License-MIT-yellow.svg
:target: https://opensource.org/licenses/MIT

A package for creating, querying, and searching in data structures holding geo data sets.

Description
===========
Expand All @@ -14,7 +27,6 @@ With pre-defined sets comprising string-definitions, folder path logics, and fil

The base classes SmartPath() and SmartTree() comprise also functions for file search and folder(-tree) volume determination.


Adding a new filenaming convention
----------------------------------
In general, please follow the code and test guidelines of existing naming conventions.
Expand All @@ -33,7 +45,6 @@ The following description aims to show how to implement a new naming convention:

- Add tests to "tests" and name the test file "test_[]_naming.py", where "[]" should be replaced by the abbreviation of the new naming convention.


Note
====

Expand Down

0 comments on commit 2f308bc

Please sign in to comment.