Skip to content

Commit

Permalink
Bump versions in GA & Pipfile
Browse files Browse the repository at this point in the history
We cannot bump the flake due to Nixpkgs stupidity...
  • Loading branch information
niknetniko committed Nov 21, 2023
1 parent 52c8dcb commit 308ad1c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.11.2
python-version: 3.12
cache: 'pipenv'
- run: pip install pipenv
- run: pipenv install --dev
Expand All @@ -34,7 +34,7 @@ jobs:
- run: cabal v1-install aeson
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- run: npm install [email protected]
- run: npm install -g [email protected]
- run: sudo apt -y install hlint cppcheck shellcheck checkstyle
Expand All @@ -60,13 +60,13 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.11.2
python-version: 3.12
cache: 'pipenv'
- run: pip install pipenv
- run: pipenv install --dev
- run: echo "$(pipenv --venv)/bin" >> $GITHUB_PATH
- uses: jakebailey/pyright-action@v1
with:
version: '1.1.316'
version: '1.1.336'
warnings: true
working-directory: tested/
14 changes: 7 additions & 7 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ name = "pypi"

[packages]
psutil = "==5.9.5"
attrs = "==22.2.0"
attrs = "==23.1.0"
cattrs = "==23.1.2"
jsonschema = "==4.18.4"
jsonschema = "==4.19.1"
typing-inspect = "==0.9.0"
pyyaml = "==6.0"
pygments = "==2.15.1"
pyyaml = "==6.0.1"
pygments = "==2.16.1"
python-i18n = "==0.3.9"
# Required for the Python language module
pylint = "==2.17.1"
pylint = "==3.0.1"
# Needed for exercise instantiation
# You'll need to install these if you want to use it.
jinja2 = "==3.1.2"
Expand All @@ -26,5 +26,5 @@ pytest-cov = ""
pytest-xdist = ""

[requires]
python_version = "3.11"
python_full_version = "3.11.2"
python_version = "3.12"
python_full_version = "3.12.0"

0 comments on commit 308ad1c

Please sign in to comment.