質問編集履歴
3
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -78,7 +78,7 @@
|
|
78
78
|
|
79
79
|
```ここに言語を入力
|
80
80
|
|
81
|
-
Python-3.8.
|
81
|
+
Python-3.8.2
|
82
82
|
|
83
83
|
```
|
84
84
|
|
@@ -132,7 +132,7 @@
|
|
132
132
|
|
133
133
|
|
134
134
|
|
135
|
-
Windows10 , python3.8.
|
135
|
+
Windows10 , python3.8.2
|
136
136
|
|
137
137
|
|
138
138
|
|
2
タグ変更
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|
1
内容が反映されない
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
https://teratail.com/questions/180164
|
2
|
-
|
3
|
-
|
4
|
-
|
5
1
|
### 前提・実現したいこと
|
6
2
|
|
7
3
|
|
8
4
|
|
9
|
-
|
5
|
+
Herokuでデプロイ作業をしていますが、
|
6
|
+
|
7
|
+
"git push heroku master" でpushした時にエラーが出ます。
|
10
8
|
|
11
9
|
|
10
|
+
|
11
|
+
過去にteratailで質問された内容を確認しましたが、解消されませんでした。
|
12
12
|
|
13
13
|
|
14
14
|
|
@@ -20,19 +20,65 @@
|
|
20
20
|
|
21
21
|
```
|
22
22
|
|
23
|
-
|
23
|
+
Requested runtime (Python-3.8.2) is not available for this stack (heroku-18).
|
24
24
|
|
25
25
|
```
|
26
26
|
|
27
27
|
|
28
28
|
|
29
|
-
###
|
29
|
+
### エラー全体
|
30
30
|
|
31
31
|
|
32
32
|
|
33
33
|
```ここに言語名を入力
|
34
34
|
|
35
|
+
Enumerating objects: 209, done.
|
36
|
+
|
37
|
+
Counting objects: 100% (209/209), done.
|
38
|
+
|
39
|
+
Delta compression using up to 12 threads
|
40
|
+
|
41
|
+
Compressing objects: 100% (127/127), done.
|
42
|
+
|
43
|
+
Writing objects: 100% (209/209), 440.17 KiB | 6.11 MiB/s, done.
|
44
|
+
|
45
|
+
Total 209 (delta 89), reused 118 (delta 57)
|
46
|
+
|
47
|
+
remote: Compressing source files... done.
|
48
|
+
|
49
|
+
remote: Building source:
|
50
|
+
|
35
|
-
|
51
|
+
remote:
|
52
|
+
|
53
|
+
remote: -----> Python app detected
|
54
|
+
|
55
|
+
remote: ! Requested runtime (Python-3.8.2) is not available for this stack (heroku-18).
|
56
|
+
|
57
|
+
remote: ! Aborting. More info: https://devcenter.heroku.com/articles/python-support
|
58
|
+
|
59
|
+
remote: ! Push rejected, failed to compile Python app.
|
60
|
+
|
61
|
+
remote:
|
62
|
+
|
63
|
+
remote: ! Push failed
|
64
|
+
|
65
|
+
remote: Verifying deploy...
|
66
|
+
|
67
|
+
remote:
|
68
|
+
|
69
|
+
remote: ! Push rejected to **********. #アプリ名は伏せています。
|
70
|
+
|
71
|
+
remote:
|
72
|
+
|
73
|
+
```
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
### runtime.txt
|
78
|
+
|
79
|
+
```ここに言語を入力
|
80
|
+
|
81
|
+
Python-3.8.3
|
36
82
|
|
37
83
|
```
|
38
84
|
|
@@ -40,14 +86,70 @@
|
|
40
86
|
|
41
87
|
### 試したこと
|
42
88
|
|
43
|
-
|
44
|
-
|
45
|
-
|
89
|
+
herokuサポート(https://devcenter.heroku.com/articles/python-support)を確認したところ
|
46
90
|
|
47
91
|
|
48
92
|
|
93
|
+
サポートされているランタイムは
|
94
|
+
|
49
|
-
|
95
|
+
python-3.8.5 サポートされているすべてのランタイムスタック
|
96
|
+
|
97
|
+
python-3.7.8 サポートされているすべてのランタイムスタック
|
98
|
+
|
99
|
+
python-3.6.11 サポートされているすべてのランタイムスタック
|
100
|
+
|
101
|
+
python-2.7.18 サポートされているすべてのランタイムスタック
|
50
102
|
|
51
103
|
|
52
104
|
|
105
|
+
と明記されていたため、runtime.txt を 3.8.5 、3.7.8 と書き換えてみましたが
|
106
|
+
|
107
|
+
同様なエラーが表示されました。
|
108
|
+
|
109
|
+
```
|
110
|
+
|
111
|
+
Requested runtime (Python-3.8.5) is not available for this stack (heroku-18).#8.3.5の場合
|
112
|
+
|
113
|
+
Requested runtime (Python-3.7.8) is not available for this stack (heroku-18).#3.7.8の場合
|
114
|
+
|
115
|
+
```
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
teratailの質問で、同様の質問内容がありましたが
|
120
|
+
|
53
|
-
こ
|
121
|
+
こちらの方は、上記の方法で解決したようです。
|
122
|
+
|
123
|
+
https://teratail.com/questions/180164
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
バージョンについて、他に修正する部分があれば教えて下さい。
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
### 環境
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
Windows10 , python3.8.5
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
requirements.txt
|
140
|
+
|
141
|
+
```
|
142
|
+
|
143
|
+
beautifulsoup4==4.9.1
|
144
|
+
|
145
|
+
Django==3.0.3
|
146
|
+
|
147
|
+
django-bootstrap4==2.1.1
|
148
|
+
|
149
|
+
django-heroku==0.3.1
|
150
|
+
|
151
|
+
gunicorn==20.0.4
|
152
|
+
|
153
|
+
Pillow==7.2.0
|
154
|
+
|
155
|
+
```
|