mattupson commited on
Commit
36cb989
1 Parent(s): 462c96e

chg: Update dependencies

Browse files
Files changed (3) hide show
  1. Makefile +21 -0
  2. requirements.txt +50 -2
  3. unpinned_requirements.txt +3 -0
Makefile ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PYTHON_VERSION = python3.10
2
+ VIRTUALENV := .venv
3
+
4
+ .PHONY: virtualenv
5
+ virtualenv:
6
+ @if [ -d $(VIRTUALENV) ]; then rm -rf $(VIRTUALENV); fi
7
+ @mkdir -p $(VIRTUALENV)
8
+ virtualenv --python $(PYTHON_VERSION) $(VIRTUALENV)
9
+ $(VIRTUALENV)/bin/pip3 install --upgrade pip
10
+ $(VIRTUALENV)/bin/pip3 install --upgrade -r requirements.txt
11
+
12
+ .PHONY: update-requirements-txt
13
+ update-requirements-txt: VIRTUALENV := /tmp/update-requirements-virtualenv
14
+ update-requirements-txt:
15
+ @if [ -d $(VIRTUALENV) ]; then rm -rf $(VIRTUALENV); fi
16
+ @mkdir -p $(VIRTUALENV)
17
+ virtualenv --python $(PYTHON_VERSION) $(VIRTUALENV)
18
+ $(VIRTUALENV)/bin/pip3 install --upgrade pip
19
+ $(VIRTUALENV)/bin/pip3 install --upgrade -r unpinned_requirements.txt
20
+ echo "# Created by 'make update-requirements-txt'. DO NOT EDIT!" > requirements.txt
21
+ $(VIRTUALENV)/bin/pip freeze | grep -v pkg_resources==0.0.0 >> requirements.txt
requirements.txt CHANGED
@@ -1,2 +1,50 @@
1
- streamlit==1.10.0
2
- srsly==2.4.3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Created by 'make update-requirements-txt'. DO NOT EDIT!
2
+ altair==4.2.2
3
+ attrs==23.1.0
4
+ blinker==1.6.2
5
+ cachetools==5.3.1
6
+ catalogue==2.0.8
7
+ certifi==2023.5.7
8
+ charset-normalizer==3.1.0
9
+ click==8.1.3
10
+ decorator==5.1.1
11
+ entrypoints==0.4
12
+ gitdb==4.0.10
13
+ GitPython==3.1.31
14
+ idna==3.4
15
+ importlib-metadata==6.7.0
16
+ Jinja2==3.1.2
17
+ jsonschema==4.17.3
18
+ markdown-it-py==3.0.0
19
+ MarkupSafe==2.1.3
20
+ mdurl==0.1.2
21
+ numpy==1.25.0
22
+ packaging==23.1
23
+ pandas==2.0.3
24
+ Pillow==9.5.0
25
+ protobuf==4.23.3
26
+ pyarrow==12.0.1
27
+ pydeck==0.8.1b0
28
+ Pygments==2.15.1
29
+ Pympler==1.0.1
30
+ pyrsistent==0.19.3
31
+ python-dateutil==2.8.2
32
+ pytz==2023.3
33
+ pytz-deprecation-shim==0.1.0.post0
34
+ requests==2.31.0
35
+ rich==13.4.2
36
+ six==1.16.0
37
+ smmap==5.0.0
38
+ srsly==2.4.6
39
+ streamlit==1.24.0
40
+ tenacity==8.2.2
41
+ toml==0.10.2
42
+ toolz==0.12.0
43
+ tornado==6.3.2
44
+ typing_extensions==4.7.1
45
+ tzdata==2023.3
46
+ tzlocal==4.3.1
47
+ urllib3==2.0.3
48
+ validators==0.20.0
49
+ watchdog==3.0.0
50
+ zipp==3.15.0
unpinned_requirements.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ streamlit
2
+ srsly
3
+ altair<5