Skip to content

Commit

Permalink
pyenv 2.2.4 (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
gruve-p authored Feb 9, 2022
1 parent 09ae537 commit 0089e3f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This GitHub Action allows using pyenv in your build.
Features:
=========

- Installs pyenv ``2.0.0``.
- Installs pyenv ``2.2.4``.
- Exports `PYENV_ROOT <https://github.com/pyenv/pyenv#environment-variables>`_ environment variable.
- Injects ``$PYENV_ROOT/bin`` in the PATH.
- Injects `pyenv shims <https://github.com/pyenv/pyenv#understanding-shims>`_ in the PATH.
Expand Down Expand Up @@ -56,7 +56,7 @@ each of them and run pytest.
steps:
- uses: actions/checkout@v2
- name: Install python version
uses: gabrielfalcao/pyenv-action@v5
uses: gabrielfalcao/pyenv-action@v9
with:
default: "${{ matrix.python }}"
command: pip install -U pip # upgrade pip after installing python
Expand All @@ -82,7 +82,7 @@ Enable multiple python versions in your github-action
name: install pyenv
steps:
- name: setup pyenv
uses: "gabrielfalcao/pyenv-action@v5"
uses: "gabrielfalcao/pyenv-action@v9"
with:
default: 3.7.2
versions: 3.6.8, 3.5.7
Expand Down Expand Up @@ -119,7 +119,7 @@ Example:
.. code:: yaml
- name: setup pyenv
uses: "gabrielfalcao/pyenv-action@v5"
uses: "gabrielfalcao/pyenv-action@v9"
with:
default: 3.7.5
Expand All @@ -139,7 +139,7 @@ Example:
.. code:: yaml
- name: setup pyenv
uses: "gabrielfalcao/pyenv-action@v5"
uses: "gabrielfalcao/pyenv-action@v9"
with:
versions: 3.6.4, 3.7.2
Expand All @@ -158,7 +158,7 @@ Example:
.. code:: yaml
- name: setup pyenv
uses: "gabrielfalcao/pyenv-action@v5"
uses: "gabrielfalcao/pyenv-action@v9"
with:
versions: 3.6.4, 3.7.2
command: |
Expand Down Expand Up @@ -194,7 +194,7 @@ Example:
steps:
- name: setup pyenv
id: pyenv_installation
uses: "gabrielfalcao/pyenv-action@v5"
uses: "gabrielfalcao/pyenv-action@v9"
- name: debug pyenv
run: echo ${{ steps.pyenv_installation.outputs.pyenv_root }}
14 changes: 7 additions & 7 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9444,7 +9444,7 @@ function wrappy (fn, cb) {

Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.PYENV_VERSION = void 0;
exports.PYENV_VERSION = '2.0.0';
exports.PYENV_VERSION = '2.2.4';


/***/ }),
Expand Down Expand Up @@ -10050,7 +10050,7 @@ module.exports = require("zlib");;
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
Expand All @@ -10063,7 +10063,7 @@ module.exports = require("zlib");;
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/
/******/ // Execute the module function
/******/ var threw = true;
/******/ try {
Expand All @@ -10072,18 +10072,18 @@ module.exports = require("zlib");;
/******/ } finally {
/******/ if(threw) delete __webpack_module_cache__[moduleId];
/******/ }
/******/
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat */
/******/
/******/
/******/ __webpack_require__.ab = __dirname + "/";/************************************************************************/
/******/ // module exports must be returned from runtime so entry inlining is disabled
/******/ // startup
/******/ // Load entry module and return exports
/******/ return __webpack_require__(3941);
/******/ })()
;
;
2 changes: 1 addition & 1 deletion src/defaults.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const PYENV_VERSION: string = '2.0.0';
export const PYENV_VERSION: string = '2.2.4';

0 comments on commit 0089e3f

Please sign in to comment.