File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 uses : actions/checkout@v4
1717
1818 - name : Setup Python
19- uses : actions/setup-python@v4
19+ uses : actions/setup-python@v5
2020 with :
21- python-version : " 3.9 "
21+ python-version : " 3.10 "
2222
2323 - name : Install 'build' package
2424 run : pip install build
Original file line number Diff line number Diff line change 1111 uses : actions/checkout@v4
1212
1313 - name : Set up Python
14- uses : actions/setup-python@v4.3.0
14+ uses : actions/setup-python@v5
1515 with :
16- python-version : " 3.9 "
16+ python-version : " 3.10 "
1717
1818 # mainly needed so mypy will have the dependencies it needs
1919 - name : Install elementary
Original file line number Diff line number Diff line change 4949 echo "$PROFILES_YML" > ~/.dbt/profiles.yml
5050
5151 - name : Setup Python
52- uses : actions/setup-python@v4
52+ uses : actions/setup-python@v5
5353 with :
54- python-version : " 3.9 "
54+ python-version : " 3.10 "
5555
5656 - name : Install dbt
5757 run : pip install --pre
Original file line number Diff line number Diff line change @@ -109,9 +109,9 @@ jobs:
109109 # run: docker compose up -d clickhouse
110110
111111 - name : Setup Python
112- uses : actions/setup-python@v4
112+ uses : actions/setup-python@v5
113113 with :
114- python-version : " 3.9 "
114+ python-version : " 3.10 "
115115
116116 - name : Install Spark requirements
117117 if : inputs.warehouse-type == 'spark'
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ def get_quiet_logs(ctx):
3636 return False
3737
3838
39- class ElementaryCLI (click .MultiCommand ):
39+ class ElementaryCLI (click .MultiCommand ): # type: ignore[misc, valid-type]
4040 _CMD_MAP = {
4141 "monitor" : monitor ,
4242 "report" : report ,
Original file line number Diff line number Diff line change @@ -9,11 +9,21 @@ readme = "README.md"
99homepage = " https://www.elementary-data.com"
1010repository = " https://github.com/elementary-data/elementary"
1111documentation = " https://docs.elementary-data.com"
12+ classifiers = [
13+ " Natural Language :: English" ,
14+ " Intended Audience :: Developers" ,
15+ " License :: OSI Approved :: Apache Software License" ,
16+ " Programming Language :: Python :: 3.10" ,
17+ " Programming Language :: Python :: 3.11" ,
18+ " Programming Language :: Python :: 3.12" ,
19+ " Programming Language :: Python :: 3.13" ,
20+ " Topic :: Software Development :: Libraries" ,
21+ ]
1222
1323packages = [{include = " elementary" }]
1424
1525[tool .poetry .dependencies ]
16- python = " >=3.9 ,<3.14"
26+ python = " >=3.10 ,<3.14"
1727click = " >=7.0,<9.0"
1828dbt-core = " >=0.20,<2.0.0"
1929requests = " >=2.28.1,<3.0.0"
You can’t perform that action at this time.
0 commit comments