Skip to content

Commit

Permalink
update go to 1.16.10 and python to 3.7.12 (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
waltzofpearls committed Nov 21, 2021
1 parent 16c9f33 commit 4357dce
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go_version: ["1.16.5"]
python_version: ["3.7.11"]
go_version: ["1.16.10"]
python_version: ["3.7.12"]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
6 changes: 2 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
APP := reckon
PYTHON_VERSION := 3.7.11
GO_VERSION := 1.16.5
PYTHON_VERSION := 3.7.12
GO_VERSION := 1.16.10
GORELEASER_VERSION := 0.174.0
OSX_SDK_VERSION := 10.12
PORT := 8080:8080
PROM_CLIENT_URL ?= http://prometheus.rpi.topbass.studio:9090
PROM_EXPORTER_ADDR ?= :8080
Expand Down Expand Up @@ -143,7 +142,6 @@ release-base:
--build-arg "PYTHON_VERSION=$(PYTHON_VERSION)" \
--build-arg "GO_VERSION=$(GO_VERSION)" \
--build-arg "GORELEASER_VERSION=$(GORELEASER_VERSION)" \
--build-arg "OSX_SDK_VERSION=$(OSX_SDK_VERSION)" \
-t $(APP)/release \
-f release.Dockerfile \
.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ Go, Python and Virtualenv. Make sure you have Go 1.16+ and Python 3.7
- Pyenv: `brew install pyenv` or [follow this guide](https://github.com/pyenv/pyenv#installation)
- Python3.7
- find a Python 3.7 version with `pyenv install -l | grep '^\s*3.7'`
- select a version (eg. `3.7.4`) and install it with `pyenv install 3.7.4`
- switch to the installed version `pyenv global 3.7.4`
- select a version (eg. `3.7.12`) and install it with `pyenv install 3.7.12`
- switch to the installed version `pyenv global 3.7.12`
- Virtualenvwrapper: `pip install virtualenvwrapper` AND [follow this guide](https://virtualenvwrapper.readthedocs.io/en/latest/install.html)

```shell
Expand Down

0 comments on commit 4357dce

Please sign in to comment.