File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 : |
Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and 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
Original file line number Diff line number Diff line change 1- __version__ = "2.0.5 "
1+ __version__ = "2.0.6 "
You can’t perform that action at this time.
0 commit comments