Skip to content

Commit 5f240b3

Browse files
committed
req updates to work with python 3.11
1 parent 3d48942 commit 5f240b3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ cd apod-api
6565
```
6666
3. Create a new virtual environment `env` in the directory
6767
```bash
68-
python -m virtualenv env
68+
python -m venv venv
6969
```
7070
4. Activate the new environment
7171
```bash
72-
source env/bin/activate
72+
.\venv\Scripts\Activate
7373
```
7474
5. Install dependencies in new environment
7575
```bash

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ flask-cors>=3.0.7
99
gunicorn==19.5.0
1010
Jinja2>=2.8
1111
Werkzeug>=0.10.4
12-
beautifulsoup4==4.5.3
12+
beautifulsoup4==4.11.1
1313
requests>=2.20.0
1414
coverage==4.1
1515
nose==1.3.7
1616
setupext-janitor==1.0.0
1717
bs4==0.0.1
1818
mock>=3.0.0
19-
Pillow==8.3.2
19+
Pillow>=9.3

runtime.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.6.1
1+
python-3.11

0 commit comments

Comments
 (0)