From 4b5ba9d37fd2e9e80d9bc6954516f4faf8d57acd Mon Sep 17 00:00:00 2001 From: Syed Muhammad Dawoud Sheraz Ali Date: Fri, 14 Jun 2024 22:51:22 +0500 Subject: [PATCH] v18.0.0 --- .github/workflows/test.yml | 13 ++++++++----- .../20240614_224657_dawoud.sheraz_redwood.md | 1 + setup.py | 4 ++-- tutorandroid/__about__.py | 2 +- 4 files changed, 12 insertions(+), 8 deletions(-) create mode 100644 changelog.d/20240614_224657_dawoud.sheraz_redwood.md diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 829f613..c1c2821 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,16 +7,19 @@ on: jobs: tests: runs-on: ubuntu-latest + strategy: + matrix: + python-version: ['3.8', '3.12'] steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.8 - uses: actions/setup-python@v2 + - uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: ${{ matrix.python-version }} - name: Upgrade pip run: python -m pip install --upgrade pip setuptools - name: Install dependencies run: | pip install .[dev] - name: Test lint, types, and format - run: make test + run: make test \ No newline at end of file diff --git a/changelog.d/20240614_224657_dawoud.sheraz_redwood.md b/changelog.d/20240614_224657_dawoud.sheraz_redwood.md new file mode 100644 index 0000000..af43065 --- /dev/null +++ b/changelog.d/20240614_224657_dawoud.sheraz_redwood.md @@ -0,0 +1 @@ +- 💥[Feature] Upgrade to redwood (by @dawoudsheraz) \ No newline at end of file diff --git a/setup.py b/setup.py index c4d97c3..cfd32cf 100644 --- a/setup.py +++ b/setup.py @@ -43,8 +43,8 @@ def load_about(): packages=find_packages(exclude=["tests*"]), include_package_data=True, python_requires=">=3.8", - install_requires=["tutor>=17.0.0,<18.0.0"], - extras_require={"dev": ["tutor[dev]>=17.0.0,<18.0.0"]}, + install_requires=["tutor>=18.0.0,<19.0.0"], + extras_require={"dev": ["tutor[dev]>=18.0.0,<19.0.0"]}, entry_points={ "tutor.plugin.v1": [ "android = tutorandroid.plugin" diff --git a/tutorandroid/__about__.py b/tutorandroid/__about__.py index a08b09c..c6a8b8e 100644 --- a/tutorandroid/__about__.py +++ b/tutorandroid/__about__.py @@ -1 +1 @@ -__version__ = "17.0.0" +__version__ = "18.0.0"