From 0ee1bc7264c7c0a17005745bc0be2dddcae46a4f Mon Sep 17 00:00:00 2001 From: tersec Date: Thu, 6 Jun 2024 20:50:50 +0000 Subject: [PATCH] require Nim 1.6 or newer --- .github/workflows/ci.yml | 8 ++++---- bncurve.nimble | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e0e33ff..0ee64f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,19 +22,19 @@ jobs: include: - target: os: linux - builder: ubuntu-18.04 + builder: ubuntu-latest - target: os: macos - builder: macos-10.15 + builder: macos-latest - target: os: windows - builder: windows-2019 + builder: windows-latest name: '${{ matrix.target.os }}-${{ matrix.target.cpu }}-${{ matrix.test_lang }}' runs-on: ${{ matrix.builder }} steps: - name: Checkout nim-bncurve - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: path: nim-bncurve submodules: false diff --git a/bncurve.nimble b/bncurve.nimble index 00497b9..fb19468 100644 --- a/bncurve.nimble +++ b/bncurve.nimble @@ -7,7 +7,7 @@ skipDirs = @["tests", "Nim", "nim"] ### Dependencies -requires "nim > 0.18.0", +requires "nim >= 1.6.0", "nimcrypto" task test, "Run all tests":