Skip to content

Commit

Permalink
Merge pull request #22 from wayfair-incubator/cantonellis_release_0.1.0
Browse files Browse the repository at this point in the history
release 0.1.0
  • Loading branch information
chrisantonellis authored Feb 18, 2021
2 parents 3e5c1e4 + a22b16c commit 337dd4f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0] - 2021-02-18

Initial release
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ system_dependencies = [
python_dependencies = [
"nyancat==0.1.2"
]
python_versions = [
"cp36-cp36m"
"cp38-cp38"
]
steps = [
"touch /foobar.txt"
]
Expand All @@ -45,6 +49,10 @@ They are expected to be in `package-version` format.
* `python_dependencies` is a list of Python dependencies to install via `pip`. They
are expected to be in `package==version` format. They are currently installed for
all available versions of Python in a given manylinux image.
* `python_versions` is a list of Python versions to install Python dependencies for
in a given manylinux image. They are expected to follow the Python installation directory
naming convention from in the specified manyliniux image, ex. `cp36-cp36m`. Python version names
can be found by running `ls /opt/python` in a manylinux image.
* `steps` is a list of steps to execute via bash. Package building and uploading could
be implemented here, or `little-cheesemonger` could be integrated into a larger system!

Expand Down
2 changes: 1 addition & 1 deletion little_cheesemonger/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
from little_cheesemonger._errors import LittleCheesemongerError # noqa
from little_cheesemonger._run import run # noqa

__version__ = "0.1.0rc2"
__version__ = "0.1.0"

0 comments on commit 337dd4f

Please sign in to comment.