Skip to content

Commit 7b0e672

Browse files
committed
Update dependencies to work with Python 3.10
The server is being upgraded to a newer version of the OS and Python 3.10 is being installed. Dependencies needs to be updated in order to work with this version of Python.
1 parent fed46f3 commit 7b0e672

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

deploy-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
.
1+
-r requirements.txt
22
psycopg2==2.9.3
33
gunicorn==20.1.0

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Django>=1.11,<2.2
2-
isodate>=0.4.7,<0.6
3-
matplotlib>=1.4.3,<2.0
2+
isodate==0.6.1
3+
matplotlib<3.8

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
download_url="https://github.com/tobami/codespeed/tags",
1010
license='GNU Lesser General Public License version 2.1',
1111
keywords=['benchmarking', 'visualization'],
12-
install_requires=['django>=1.11<2.2', 'isodate>=0.4.7,<0.6', 'matplotlib>=1.4.3,<2.0'],
12+
install_requires=['django', 'isodate', 'matplotlib'],
1313
packages=find_packages(exclude=['ez_setup', 'sample_project']),
1414
long_description='README.md',
1515
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)