-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
116 lines (108 loc) · 2.63 KB
/
Copy pathpyproject.toml
File metadata and controls
116 lines (108 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[project]
name = "micromasters"
version = "0.0.1"
requires-python = ">=3.11"
dependencies = [
"django>=5.2,<5.3",
"pillow>=10.0",
"boto3==1.42.78",
"celery==5.6.3",
"certifi>=2021.10.8",
"dj-database-url==0.3.0",
"django-cors-headers>=4.0",
"django-hijack>=3.3,<4.0",
"django-ipware>=5.0",
"django-health-check[celery,redis]>=4.0.0",
"django-redis==5.2.0",
"django-robots>=5.0",
"django-role-permissions==2.2.1",
"django-storages>=1.13",
"django-webpack-loader==1.7.0",
"djangorestframework>=3.14",
"edx-api-client==1.2.0",
"edx-opaque-keys==0.4.4",
"opensearch-py==1.0.0",
"opensearch-dsl==1.0.0",
"factory-boy==2.8.1",
"faker",
"html5lib>=1.1",
"l18n==2021.3",
"ipython",
"jsonfield>=3.1.0",
"jsonpatch==1.16",
"pyjwt==2.13.0",
"phonenumbers>=8.12.0",
"psycopg2>=2.9",
"pycountry",
"python-dateutil>=2.8.2",
"sentry-sdk==1.1.0",
"redis>=4.0",
"requests>=2.20.0",
"setuptools>=67.6.1,<80",
"six>=1.11.0",
"robohash==2.0.0",
"tornado>=6.0",
"urllib3==1.26.5",
"wagtail>=7.0,<8.0",
"flaky==3.7.0",
"pyopenssl",
"social-auth-core>=4.0,<5.0",
"social-auth-app-django>=5.0,<6.0",
"django-taggit>=5.0",
"django-filter>=23.0",
"willow[heif]>=1.8",
"sqlparse>=0.5",
"granian>=2.7.2",
"celery-redbeat>=2.3.3",
]
[tool.uv]
package = false
exclude-newer = "7d"
required-version = ">=0.9.17"
[dependency-groups]
dev = [
"astroid>=3.0,<4.0",
"ddt",
"django-debug-toolbar",
"ipdb",
"nplusone>=0.8.1",
"pylint>=3.0,<4.0",
"pylint-django>=2.5,<3.0",
"pylint-plugin-utils>=0.8",
"pytest>=7.0,<8.0",
"pytest-cov==2.12.1",
"pytest-django==4.12.0",
"pytest-mock==3.15.1",
"selenium",
"testfixtures",
"isort",
"semantic-version",
]
[tool.bumpversion]
current_version = "0.250.1"
commit = false
tag = false
parse = "(?P<release>(?:[1-9][0-9]{3})\\.(?:1[0-2]|[1-9])\\.(?:3[0-1]|[12][0-9]|[1-9]))\\.(?P<build>\\d+)"
serialize = ["{release}.{build}"]
[tool.bumpversion.parts.release]
calver_format = "{YYYY}.{MM}.{DD}"
[tool.bumpversion.parts.build]
first_value = "1"
[[tool.bumpversion.files]]
filename = "VERSION"
search = "{current_version}"
replace = "{new_version}"
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
filename = "uv.lock"
search = """
name = "micromasters"
version = "{current_version}"
source = {{ virtual = "." }}"""
replace = """
name = "micromasters"
version = "{new_version}"
source = {{ virtual = "." }}"""