Skip to content

Commit f6d6fbc

Browse files
v2.0.6 :hammer
* Prepare for new release * Remove caching for pip packages
1 parent 3e35824 commit f6d6fbc

3 files changed

Lines changed: 6 additions & 13 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,20 +35,9 @@ jobs:
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737

38-
- uses: actions/cache@v1
39-
id: depcache
40-
with:
41-
path: deps
42-
key: requirements-pip-${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }}
43-
4438
- name: Download dependencies
45-
if: steps.depcache.outputs.cache-hit != 'true'
46-
run: |
47-
pip download --dest=deps -r requirements.txt
48-
49-
- name: Install dependencies
5039
run: |
51-
pip install -U --no-index --find-links=deps deps/*
40+
pip install -r requirements.txt
5241
5342
- name: Run tests
5443
run: |

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.0.6] - 2023-12-09 :hammer:
9+
- Fixes import for Protocols support regardless of Python version (partially
10+
broken for Python 3.9), by @fennel-akunesh
11+
812
## [2.0.5] - 2023-11-25 :lab_coat:
913
- Adds support for resolving `Protocol` classes even when they don't define an
1014
`__init__` method, by @lucas-labs

rodi/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.0.5"
1+
__version__ = "2.0.6"

0 commit comments

Comments
 (0)