Skip to content

Commit 82dce52

Browse files
authored
Merge pull request #58 from python-ellar/proj_info_update
Project PyPI info updates
2 parents 6c1b97b + 63cf606 commit 82dce52

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/test_full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10', '3.11']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1414

1515
steps:
1616
- uses: actions/checkout@v4

ellar_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Ellar CLI Tool for Scaffolding Ellar Projects, Modules and also running Ellar Commands"""
22

3-
__version__ = "0.2.9"
3+
__version__ = "0.3.0"

ellar_cli/scaffolding/module_template/module_name/schemas.ellar

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ class ASampleDTO(DataclassSerializer):
1313
name: str
1414
age: t.Optional[int] = None
1515
"""
16-
from ellar.common import DataclassSerializer, Serializer
16+
from ellar.common import Serializer

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ authors = [
1414
dynamic = ["version", "description"]
1515
requires-python = ">=3.8"
1616
readme = "README.md"
17-
home-page = "https://github.com/eadwinCode/ellar"
17+
home-page = "https://github.com/python-ellar/ellar"
1818
classifiers = [
1919
"Intended Audience :: Information Technology",
2020
"Intended Audience :: System Administrators",
@@ -50,9 +50,9 @@ dependencies = [
5050
ellar = "ellar_cli.cli:main"
5151

5252
[project.urls]
53-
Documentation = "https://github.com/eadwinCode/ellar-cli"
54-
Source = "https://github.com/eadwinCode/ellar-cli"
55-
Homepage = "https://eadwincode.github.io/ellar-cli/"
53+
Documentation = "https://github.com/python-ellar/ellar-cli"
54+
Source = "https://github.com/python-ellar/ellar-cli"
55+
Homepage = "https://python-ellar.github.io/ellar-cli/"
5656

5757
[project.optional-dependencies]
5858
test = [

0 commit comments

Comments
 (0)