-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from wimglenn/test-313
Python 3.13
- Loading branch information
Showing
4 changed files
with
61 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# luddite | ||
|
||
[![actions](https://github.com/jumptrading/luddite/actions/workflows/tests.yml/badge.svg)](https://github.com/jumptrading/luddite/actions/workflows/tests.yml/) | ||
[![codecov](https://codecov.io/gh/jumptrading/luddite/branch/master/graph/badge.svg)](https://codecov.io/gh/jumptrading/luddite) | ||
[![pypi](https://img.shields.io/pypi/v/luddite.svg)](https://pypi.org/project/luddite/) | ||
![pyversions](https://img.shields.io/pypi/pyversions/luddite.svg) | ||
|
||
`luddite` checks if pinned versions in your `requirements.txt` file have | ||
newer versions in the package index. It's great to be near the cutting | ||
edge, but not so close that you get cut! This tool will help you keep | ||
things up to date manually. | ||
|
||
There are [many ways to specify requirements][1], but luddite's only | ||
interested in one: we're looking for `package==version` pins. Parsing | ||
won't break on lines that aren't fitting this format, but you'll have | ||
to check them manually. | ||
|
||
`luddite` works on both Python 2 and Python 3. | ||
|
||
### Installation | ||
|
||
```bash | ||
pip install luddite | ||
``` | ||
|
||
### Usage | ||
|
||
```bash | ||
luddite /path/to/requirements.txt | ||
``` | ||
|
||
If you are in the same directory as the `requirements.txt` file, you can | ||
just type `luddite`. | ||
|
||
### Example output | ||
|
||
![image](https://user-images.githubusercontent.com/6615374/43939075-feec4530-9c2c-11e8-9770-6f7f762c72e4.png) | ||
|
||
[1]: https://pip.pypa.io/en/stable/reference/requirements-file-format/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters