Impact Forecasting for the Climate Impact Lab
Project description
=====
impax
=====
.. image:: https://img.shields.io/pypi/v/impax.svg
:target: https://pypi.python.org/pypi/impax
.. image:: https://img.shields.io/travis/ClimateImpactLab/impax.svg
:target: https://travis-ci.org/ClimateImpactLab/impax
.. image:: https://readthedocs.org/projects/impax/badge/?version=latest
:target: https://impax.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
.. image:: https://pyup.io/repos/github/ClimateImpactLab/impax/shield.svg
:target: https://pyup.io/repos/github/ClimateImpactLab/impax/
:alt: Updates
Impact Forecasting for the Climate Impact Lab
* Free software: MIT license
* Documentation: https://impax.readthedocs.io.
Setting up this package
-----------------------
*Justin Simcock: complete these instructions and then remove this section from
the readme.*
1. Create a matching repository on github if you haven't already:
a. go to https://github.com/organizations/ClimateImpactLab/repositories/new
b. enter the following information:
owner
ClimateImpactLab
Repository Name
impax
Description
Impact Forecasting for the Climate Impact Lab
Privacy
Public
**Do not initialize the repo with a readme, license, or gitignore!**
c. Press the big green buttton
2. Execute the following commands in this directory:
.. code-block:: bash
git init
git add .
git commit -m "initial commit"
git remote add origin git@github.com:ClimateImpactLab/impax.git
git push -u origin master
3. Set up automated testing, coverage, updates, and docs:
a. Set up testing
i. go to https://travis-ci.org/ and sign in/sign up with github.
Make sure travis has access to the repositories on your github
account *and* those owned by the ClimateImpactLab by enabling
access in your account settings.
ii. Next to "My Repositories" click the '+' icon
iii. Flip the switch on ClimateImpactLab/impax. If
you don't see it in the list, click 'Sync account', and make
sure you are looking at the ClimateImpactLab repositories.
iv. Push a change to your package (for example, you could delete
this section). You should see tests start running on travis
automatically.
v. Start writing tests for your code in the
``impax/tests`` folder. There are some
examples already in there to get you started.
b. Set up docs
i. go to https://readthedocs.io and sign in/sign up with github.
Same deal - make sure readthedocs has access to your github
account and ClimateImpactLab.
ii. click 'Import a project', go to ClimateImpactLab, and refresh.
iii. click the '+' icon next to
ClimateImpactLab/impax. Pick a name for your
project. The name has to be globally unique (not just within
the ClimateImpactLab), so if you chose something with a common
name you may have to rename the docs.
iv. go to the settings page for your new docs site, and navigate to the 'advanced settings' tab.
add `requirements_rtd.txt` to the "requirements file" field.
v. next time you push code to master, docs should build
automatically. You can view them at
https://impax.readthedocs.io/en/latest/
(substitute whatever name you chose).
c. Set up updates
i. go to https://pyup.io. you know the drill.
ii. Go to your account, and click '+ Add Repo'. Sync.
iii. Add ClimateImpactLab/impax
with "Dependency Updates" and "SafetyCI" turned on. Leave
"Update Schedules" off.
d. Set up test coverage monitoring
i. next up: https://coveralls.io. you got this.
e. Breathe easy. The next time you push code, these should all update for
you! Now that wasn't so bad, was it?
4. Develop with github:
a. In general, it's best to file an issue when you want to change something
or when you've found a bug, then write tests which test a-priori
assertions about desired behavior, and then write the minimum amount of
code required to pass these tests. See the contributing docs for more
workflow suggestions.
To run all tests on your local machine:
.. code-block:: bash
make test
5. Deploy
a. Set up deployment by registering the package on the python package index
(PyPI):
i. Create an account on PyPI: https://pypi.python.org/pypi
ii. Register the package:
.. code-block:: bash
python setup.py register
iii. Encrypt & package your credentials so travis can deploy for you:
.. code-block:: bash
python travis_pypi_setup.py
b. When you're ready to deploy this package, make sure all your changes are
committed. Then run:
.. code-block:: bash
bumpversion patch # (or minor or major)
git push
git push --tags
As soon as this new tagged commit passes tests, travis will deploy for
you
c. Anyone (in the world) should now be able to install your package with
.. code-block:: bash
pip install [package-name]
Features
--------
* TODO
Credits
---------
This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
=======
History
=======
0.1.2 (Current version)
-----------------------
API changes
~~~~~~~~~~~
* :py:func:`impax.csvv.get_gammas` has been deprecated. Use :py:func:`impax.read_csvv` instead (:issue:`37`)
* :py:meth:`~impax.csvv.Gammas._prep_gammas` has been removed, and :py:meth:`~impax.csvv.Gammas.sample` now
takes no arguments and returns a sample by default. Seeding the random number generator is now left up to
the user (:issue:`36`)
Bug fixes
~~~~~~~~~
* fix py3k compatability issues (:issue:`39`)
* fix travis status icon in README
* add tests for :py:func:`impax.mins._minimize_polynomial`, fix major math errors causing a failure to find minima in :py:mod:`impax.mins` module, and clarify documentation (:issue:`58`)
0.1.0 (2017-10-12)
------------------
* First release on PyPI.
impax
=====
.. image:: https://img.shields.io/pypi/v/impax.svg
:target: https://pypi.python.org/pypi/impax
.. image:: https://img.shields.io/travis/ClimateImpactLab/impax.svg
:target: https://travis-ci.org/ClimateImpactLab/impax
.. image:: https://readthedocs.org/projects/impax/badge/?version=latest
:target: https://impax.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
.. image:: https://pyup.io/repos/github/ClimateImpactLab/impax/shield.svg
:target: https://pyup.io/repos/github/ClimateImpactLab/impax/
:alt: Updates
Impact Forecasting for the Climate Impact Lab
* Free software: MIT license
* Documentation: https://impax.readthedocs.io.
Setting up this package
-----------------------
*Justin Simcock: complete these instructions and then remove this section from
the readme.*
1. Create a matching repository on github if you haven't already:
a. go to https://github.com/organizations/ClimateImpactLab/repositories/new
b. enter the following information:
owner
ClimateImpactLab
Repository Name
impax
Description
Impact Forecasting for the Climate Impact Lab
Privacy
Public
**Do not initialize the repo with a readme, license, or gitignore!**
c. Press the big green buttton
2. Execute the following commands in this directory:
.. code-block:: bash
git init
git add .
git commit -m "initial commit"
git remote add origin git@github.com:ClimateImpactLab/impax.git
git push -u origin master
3. Set up automated testing, coverage, updates, and docs:
a. Set up testing
i. go to https://travis-ci.org/ and sign in/sign up with github.
Make sure travis has access to the repositories on your github
account *and* those owned by the ClimateImpactLab by enabling
access in your account settings.
ii. Next to "My Repositories" click the '+' icon
iii. Flip the switch on ClimateImpactLab/impax. If
you don't see it in the list, click 'Sync account', and make
sure you are looking at the ClimateImpactLab repositories.
iv. Push a change to your package (for example, you could delete
this section). You should see tests start running on travis
automatically.
v. Start writing tests for your code in the
``impax/tests`` folder. There are some
examples already in there to get you started.
b. Set up docs
i. go to https://readthedocs.io and sign in/sign up with github.
Same deal - make sure readthedocs has access to your github
account and ClimateImpactLab.
ii. click 'Import a project', go to ClimateImpactLab, and refresh.
iii. click the '+' icon next to
ClimateImpactLab/impax. Pick a name for your
project. The name has to be globally unique (not just within
the ClimateImpactLab), so if you chose something with a common
name you may have to rename the docs.
iv. go to the settings page for your new docs site, and navigate to the 'advanced settings' tab.
add `requirements_rtd.txt` to the "requirements file" field.
v. next time you push code to master, docs should build
automatically. You can view them at
https://impax.readthedocs.io/en/latest/
(substitute whatever name you chose).
c. Set up updates
i. go to https://pyup.io. you know the drill.
ii. Go to your account, and click '+ Add Repo'. Sync.
iii. Add ClimateImpactLab/impax
with "Dependency Updates" and "SafetyCI" turned on. Leave
"Update Schedules" off.
d. Set up test coverage monitoring
i. next up: https://coveralls.io. you got this.
e. Breathe easy. The next time you push code, these should all update for
you! Now that wasn't so bad, was it?
4. Develop with github:
a. In general, it's best to file an issue when you want to change something
or when you've found a bug, then write tests which test a-priori
assertions about desired behavior, and then write the minimum amount of
code required to pass these tests. See the contributing docs for more
workflow suggestions.
To run all tests on your local machine:
.. code-block:: bash
make test
5. Deploy
a. Set up deployment by registering the package on the python package index
(PyPI):
i. Create an account on PyPI: https://pypi.python.org/pypi
ii. Register the package:
.. code-block:: bash
python setup.py register
iii. Encrypt & package your credentials so travis can deploy for you:
.. code-block:: bash
python travis_pypi_setup.py
b. When you're ready to deploy this package, make sure all your changes are
committed. Then run:
.. code-block:: bash
bumpversion patch # (or minor or major)
git push
git push --tags
As soon as this new tagged commit passes tests, travis will deploy for
you
c. Anyone (in the world) should now be able to install your package with
.. code-block:: bash
pip install [package-name]
Features
--------
* TODO
Credits
---------
This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
=======
History
=======
0.1.2 (Current version)
-----------------------
API changes
~~~~~~~~~~~
* :py:func:`impax.csvv.get_gammas` has been deprecated. Use :py:func:`impax.read_csvv` instead (:issue:`37`)
* :py:meth:`~impax.csvv.Gammas._prep_gammas` has been removed, and :py:meth:`~impax.csvv.Gammas.sample` now
takes no arguments and returns a sample by default. Seeding the random number generator is now left up to
the user (:issue:`36`)
Bug fixes
~~~~~~~~~
* fix py3k compatability issues (:issue:`39`)
* fix travis status icon in README
* add tests for :py:func:`impax.mins._minimize_polynomial`, fix major math errors causing a failure to find minima in :py:mod:`impax.mins` module, and clarify documentation (:issue:`58`)
0.1.0 (2017-10-12)
------------------
* First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
impax-0.1.2.tar.gz
(22.9 kB
view details)
Built Distribution
impax-0.1.2-py2.py3-none-any.whl
(13.6 kB
view details)
File details
Details for the file impax-0.1.2.tar.gz
.
File metadata
- Download URL: impax-0.1.2.tar.gz
- Upload date:
- Size: 22.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ff6ce0d3ebc217a2d96e2eed32f70f493b5a85b0bf5cafc894c1baa62576692 |
|
MD5 | 800ccc68f3217bf58aff27f33ab428a5 |
|
BLAKE2b-256 | f46d40f8dba81a2456ae66ac9931a2510d4be75c5d98272c159a9713f9dd4b45 |
File details
Details for the file impax-0.1.2-py2.py3-none-any.whl
.
File metadata
- Download URL: impax-0.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 13.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c79c490b5339888a0323651c35292e00a74d7d4b51fab6bf4705c0633690056 |
|
MD5 | 393a9c6d40448a9c920c179d283fea98 |
|
BLAKE2b-256 | 54c95a24a2a00181ed23f409c4fde3ff423a98618be575c79373a1e0ba513ec9 |