nep29


Namenep29 JSON
Version 0.0.17 PyPI version JSON
download
home_pagehttps://github.com/hmaarrfk/nep29
SummaryNEP29 Calculator tools
upload_time2022-11-30 04:53:06
maintainer
docs_urlNone
authorMark Harfouche
requires_python>=3.6
licenseBSD license
keywords nep29
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # NEP 29 Calculator


[![PyPI](https://img.shields.io/pypi/v/nep29.svg)](https://pypi.python.org/pypi/nep29)
[![Travis](https://img.shields.io/travis/hmaarrfk/nep29.svg)](https://travis-ci.com/hmaarrfk/nep29)


[NEP 29](https://numpy.org/neps/nep-0029-deprecation_policy.html) calculator tools

## Usage
```console
$ nep29 --help
usage: nep29 [-h] [--n_months N_MONTHS] [--n_minor N_MINOR] package

NEP 29 calculator.

positional arguments:
  package              Package to deprecation

optional arguments:
  -h, --help           show this help message and exit
  --n_months N_MONTHS  Number of months to keep supporting (default: 24)
  --n_minor N_MINOR    Number of minor versions to keep supporting (default: 3)

For more information, see https://numpy.org/neps/nep-0029-deprecation_policy.html
```

Example:

```console
$ nep29 numpy
| version |    date    |
|---------|------------|
|  1.19.0 | 2020-06-20 |
|  1.18.0 | 2019-12-22 |
|  1.17.0 | 2019-07-26 |
|  1.16.0 | 2019-01-14 |
```

## Credits

This package was created with [Cookiecutter](https://github.com/audreyr/cookiecutter)
and the
[hmaarrfk/cookiecutter-pypackage](https://github.com/hmaarrfk/cookiecutter-pypackage)
project template.

### Development Lead

* Mark Harfouche <mark.harfouche@gmail.com>

### Contributors

* Hugo van Kemenade (hugovk)

## Contributing

Contributions are welcome, and they are greatly appreciated! Every little bit
helps, and credit will always be given.

You can contribute in many ways:

### Report Bugs

Report bugs at https://github.com/hmaarrfk/nep29/issues.

If you are reporting a bug, please include:

* Your operating system name and version.
* Any details about your local setup that might be helpful in troubleshooting.
* Detailed steps to reproduce the bug.

### Fix Bugs

Look through the GitHub issues for bugs. Anything tagged with "bug" and "help
wanted" is open to whoever wants to implement it.

### Implement Features

Look through the GitHub issues for features. Anything tagged with "enhancement"
and "help wanted" is open to whoever wants to implement it.

### Write Documentation

NEP29 Calculator could always use more documentation, whether as part of the
official NEP29 Calculator docs, in docstrings, or even on the web in blog posts,
articles, and such.

### Submit Feedback

The best way to send feedback is to file an issue at https://github.com/hmaarrfk/nep29/issues.

If you are proposing a feature:

* Explain in detail how it would work.
* Keep the scope as narrow as possible, to make it easier to implement.
* Remember that this is a volunteer-driven project, and that contributions
  are welcome :)

### Get Started!

You can follow the scikit-image contribution document and adapt it accordingly.



# History

## 0.0.17 (2022-11-29)

* Skip invalid versions instead of erroring.

## 0.0.16 (2022-01-30)

* Add tests back to distribution.

## 0.0.15 (2022-01-30)

* Use miniver instead of versioneer.

## 0.0.10 (2021-12-30)

* Add versioneer.py to the source distribution.

## 0.0.9 (2021-11-17)

* Retrigger failed build due to travis.org migration.

## 0.0.8 (2021-06-16)

* Add support for pre-release packages that don't use a dot to separate the pre-release signifier.

## 0.0.7 (2021-11-03)

* Show default argument values in the help.

## 0.0.6 (2021-11-03)

* Support a few more time formats

## 0.0.5 (2020-10-13)

* Use pretty table for better formatting.

## 0.0.4 (2020-10-12)

* Improve documentation.

## 0.0.1 (2020-03-11)

* First release on PyPI.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/hmaarrfk/nep29",
    "name": "nep29",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "nep29",
    "author": "Mark Harfouche",
    "author_email": "mark.harfouche@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/be/0d/a2784af4b7dc122dbc99e2bc7ed0cf169585c6758de2bb434076de868a44/nep29-0.0.17.tar.gz",
    "platform": null,
    "description": "# NEP 29 Calculator\n\n\n[![PyPI](https://img.shields.io/pypi/v/nep29.svg)](https://pypi.python.org/pypi/nep29)\n[![Travis](https://img.shields.io/travis/hmaarrfk/nep29.svg)](https://travis-ci.com/hmaarrfk/nep29)\n\n\n[NEP 29](https://numpy.org/neps/nep-0029-deprecation_policy.html) calculator tools\n\n## Usage\n```console\n$ nep29 --help\nusage: nep29 [-h] [--n_months N_MONTHS] [--n_minor N_MINOR] package\n\nNEP 29 calculator.\n\npositional arguments:\n  package              Package to deprecation\n\noptional arguments:\n  -h, --help           show this help message and exit\n  --n_months N_MONTHS  Number of months to keep supporting (default: 24)\n  --n_minor N_MINOR    Number of minor versions to keep supporting (default: 3)\n\nFor more information, see https://numpy.org/neps/nep-0029-deprecation_policy.html\n```\n\nExample:\n\n```console\n$ nep29 numpy\n| version |    date    |\n|---------|------------|\n|  1.19.0 | 2020-06-20 |\n|  1.18.0 | 2019-12-22 |\n|  1.17.0 | 2019-07-26 |\n|  1.16.0 | 2019-01-14 |\n```\n\n## Credits\n\nThis package was created with [Cookiecutter](https://github.com/audreyr/cookiecutter)\nand the\n[hmaarrfk/cookiecutter-pypackage](https://github.com/hmaarrfk/cookiecutter-pypackage)\nproject template.\n\n### Development Lead\n\n* Mark Harfouche <mark.harfouche@gmail.com>\n\n### Contributors\n\n* Hugo van Kemenade (hugovk)\n\n## Contributing\n\nContributions are welcome, and they are greatly appreciated! Every little bit\nhelps, and credit will always be given.\n\nYou can contribute in many ways:\n\n### Report Bugs\n\nReport bugs at https://github.com/hmaarrfk/nep29/issues.\n\nIf you are reporting a bug, please include:\n\n* Your operating system name and version.\n* Any details about your local setup that might be helpful in troubleshooting.\n* Detailed steps to reproduce the bug.\n\n### Fix Bugs\n\nLook through the GitHub issues for bugs. Anything tagged with \"bug\" and \"help\nwanted\" is open to whoever wants to implement it.\n\n### Implement Features\n\nLook through the GitHub issues for features. Anything tagged with \"enhancement\"\nand \"help wanted\" is open to whoever wants to implement it.\n\n### Write Documentation\n\nNEP29 Calculator could always use more documentation, whether as part of the\nofficial NEP29 Calculator docs, in docstrings, or even on the web in blog posts,\narticles, and such.\n\n### Submit Feedback\n\nThe best way to send feedback is to file an issue at https://github.com/hmaarrfk/nep29/issues.\n\nIf you are proposing a feature:\n\n* Explain in detail how it would work.\n* Keep the scope as narrow as possible, to make it easier to implement.\n* Remember that this is a volunteer-driven project, and that contributions\n  are welcome :)\n\n### Get Started!\n\nYou can follow the scikit-image contribution document and adapt it accordingly.\n\n\n\n# History\n\n## 0.0.17 (2022-11-29)\n\n* Skip invalid versions instead of erroring.\n\n## 0.0.16 (2022-01-30)\n\n* Add tests back to distribution.\n\n## 0.0.15 (2022-01-30)\n\n* Use miniver instead of versioneer.\n\n## 0.0.10 (2021-12-30)\n\n* Add versioneer.py to the source distribution.\n\n## 0.0.9 (2021-11-17)\n\n* Retrigger failed build due to travis.org migration.\n\n## 0.0.8 (2021-06-16)\n\n* Add support for pre-release packages that don't use a dot to separate the pre-release signifier.\n\n## 0.0.7 (2021-11-03)\n\n* Show default argument values in the help.\n\n## 0.0.6 (2021-11-03)\n\n* Support a few more time formats\n\n## 0.0.5 (2020-10-13)\n\n* Use pretty table for better formatting.\n\n## 0.0.4 (2020-10-12)\n\n* Improve documentation.\n\n## 0.0.1 (2020-03-11)\n\n* First release on PyPI.\n",
    "bugtrack_url": null,
    "license": "BSD license",
    "summary": "NEP29 Calculator tools",
    "version": "0.0.17",
    "split_keywords": [
        "nep29"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "67a6e506dc422260fa694dd0427818d8",
                "sha256": "2416be7573a218a0fd2027ad195b04040cd92bb3a178f7444860d6808dd67f18"
            },
            "downloads": -1,
            "filename": "nep29-0.0.17-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "67a6e506dc422260fa694dd0427818d8",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.6",
            "size": 10576,
            "upload_time": "2022-11-30T04:53:04",
            "upload_time_iso_8601": "2022-11-30T04:53:04.727836Z",
            "url": "https://files.pythonhosted.org/packages/a0/01/83acd4b050e58363fe07bda680ac698eeee8e52430f06654928c90ab1eea/nep29-0.0.17-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ba6e44bc2d8944e5512e35251a7d3486",
                "sha256": "4a4a23c963199895d4d94211bae8c9e64b28e4fa243dfbddc7f23cdd88f541d7"
            },
            "downloads": -1,
            "filename": "nep29-0.0.17.tar.gz",
            "has_sig": false,
            "md5_digest": "ba6e44bc2d8944e5512e35251a7d3486",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 11563,
            "upload_time": "2022-11-30T04:53:06",
            "upload_time_iso_8601": "2022-11-30T04:53:06.070180Z",
            "url": "https://files.pythonhosted.org/packages/be/0d/a2784af4b7dc122dbc99e2bc7ed0cf169585c6758de2bb434076de868a44/nep29-0.0.17.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-11-30 04:53:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "hmaarrfk",
    "github_project": "nep29",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "nep29"
}
        
Elapsed time: 0.03343s