Skip to content

Commit b7c982d

Browse files
author
Overhang.IO
committed
Merge remote-tracking branch 'origin/master' into nightly
2 parents 5c99bb4 + 0ddbb9a commit b7c982d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ['3.8', '3.12']
12+
python-version: ['3.9', '3.12']
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Set up Python ${{ matrix.python-version }}

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ The latter command will parse tracking log events from the ``$(tutor config prin
172172
Adding data to your data lake
173173
-----------------------------
174174

175-
Tables created in Clickhouse are managed by a lightweight migration system. You can view existing migrations that ship by default with Cairn in the following folder: ``$VIRTUAL_ENV/lib/python3.8/site-packages/tutorcairn/templates/cairn/apps/clickhouse/migrations.d/``.
175+
Tables created in Clickhouse are managed by a lightweight migration system. You can view existing migrations that ship by default with Cairn in the following folder: ``$VIRTUAL_ENV/lib/python3.9/site-packages/tutorcairn/templates/cairn/apps/clickhouse/migrations.d/``.
176176

177177
You are free to create your own migrations that will automatically be created in Clickhouse every time the ``tutor local launch`` or ``tutor local do init`` commands are run. To do so, as usual in Tutor, you should create a `Tutor plugin <https://docs.tutor.edly.io/plugins.html>`__. This plugin should include the ``CAIRN_MIGRATIONS_FOLDER`` configuration. This setting should point to a template folder, inside the plugin, where migration templates are defined. For instance, assuming you created the "customcairn" plugin::
178178

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- [Deprecation] Drop support for python 3.8 as it has reached end of life. (by @Danyal-Faheem)

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def load_about():
4242
long_description_content_type="text/x-rst",
4343
packages=find_packages(exclude=["tests*"]),
4444
include_package_data=True,
45-
python_requires=">=3.8",
45+
python_requires=">=3.9",
4646
install_requires=["tutor>=18.0.0,<19.0.0"],
4747
extras_require={"dev": ["tutor[dev]>=18.0.0,<19.0.0"]},
4848
entry_points={"tutor.plugin.v1": ["cairn = tutorcairn.plugin"]},
@@ -52,7 +52,6 @@ def load_about():
5252
"License :: OSI Approved :: GNU Affero General Public License v3",
5353
"Operating System :: OS Independent",
5454
"Programming Language :: Python",
55-
"Programming Language :: Python :: 3.8",
5655
"Programming Language :: Python :: 3.9",
5756
"Programming Language :: Python :: 3.10",
5857
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)