File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6666 with :
6767 python-version : ${{ matrix.python }}
6868
69- - name : Get pip cache dir
70- id : pip-cache
71- run : echo "::set-output name=dir::$(python -m pip cache dir)"
72-
73- - name : Set up pip cache
74- uses : actions/cache@v2.1.6
75- with :
76- path : ${{ steps.pip-cache.outputs.dir }}
77- key : ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
78- restore-keys : |
79- ${{ runner.os }}-pip-
80-
8169 - name : Install dependencies
8270 run : |
8371 python -m pip install --upgrade pip
Original file line number Diff line number Diff line change @@ -167,8 +167,8 @@ def get_version_string():
167167EXTRAS_REQUIRE = {
168168 # Dependencies that are required to run tests
169169 'testing' : [
170- 'coverage[toml]>=5.4 ' , # Code coverage measurement for Python
171- 'pytest>=6.1.2 ' , # Our tests framework (6.1.2 due to python 3.5)
170+ 'coverage[toml]>=5.0a4 ' , # Code coverage measurement for Python
171+ 'pytest>=4.6.11 ' , # Our tests framework
172172 ],
173173 # Dependencies that are required to build documentation
174174 'docs' : [
@@ -214,7 +214,7 @@ def get_version_string():
214214 platforms = ['any' ],
215215 include_package_data = True ,
216216 zip_safe = False ,
217- python_requires = '>=3, <4' ,
217+ python_requires = '>=3.4, <4' ,
218218 install_requires = INSTALL_REQUIRES ,
219219 dependency_links = DEPENDENCY_LINKS ,
220220 extras_require = EXTRAS_REQUIRE ,
You can’t perform that action at this time.
0 commit comments