Skip to content

Commit b295aef

Browse files
committed
Merge
2 parents c8b80ed + 10f5c69 commit b295aef

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030

3131
Needs: Python 3.X, virtualenv
3232

33-
Stable at v. 3.8.10
33+
Stable at v. 3.10.X
3434

3535
- `git clone https://github.com/hackupc/myhackupc && cd myhackupc`
36-
- `virtualenv env --python=python3`
36+
- `virtualenv env --python=python3.10`
3737
- `source ./env/bin/activate`
3838
- `pip install -r requirements.txt`
3939
- (Optional) If using Postgres, set up the necessary environment variables for its usage before this step
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Generated by Django 3.2.23 on 2024-01-19 19:08
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('applications', '0041_auto_20230303_1741'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='hackerapplication',
15+
name='graduation_year',
16+
field=models.IntegerField(choices=[(2022, '2022'), (2023, '2023'), (2024, '2024'), (2025, '2025'), (2026, '2026'), (2027, '2027'), (2028, '2028'), (2029, '2029')], default=2025),
17+
),
18+
migrations.AlterField(
19+
model_name='mentorapplication',
20+
name='graduation_year',
21+
field=models.IntegerField(choices=[(2022, '2022'), (2023, '2023'), (2024, '2024'), (2025, '2025'), (2026, '2026'), (2027, '2027'), (2028, '2028'), (2029, '2029')], default=2025),
22+
),
23+
migrations.AlterField(
24+
model_name='volunteerapplication',
25+
name='graduation_year',
26+
field=models.IntegerField(choices=[(2022, '2022'), (2023, '2023'), (2024, '2024'), (2025, '2025'), (2026, '2026'), (2027, '2027'), (2028, '2028'), (2029, '2029')], default=2025),
27+
),
28+
]

0 commit comments

Comments
 (0)