Skip to content

Commit

Permalink
Merge branch 'main' into ottobot
Browse files Browse the repository at this point in the history
  • Loading branch information
davegaeddert committed Aug 16, 2024
2 parents 8aba1c4 + c26fdc1 commit cef9fee
Show file tree
Hide file tree
Showing 129 changed files with 3,919 additions and 5,334 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
python-version: ["3.11", "3.12"]
package: ["plain", "plain-worker", "plain-flags", "plain-sessions", "plain-staff"]
package: ["plain", "plain-worker", "plain-flags", "plain-sessions", "plain-staff", "plain-oauth"]

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.venv
.env
*.egg-info
*.py[co]
__pycache__
Expand Down
1 change: 0 additions & 1 deletion plain-auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ INSTALLED_PACKAGES = [

MIDDLEWARE = [
"plain.middleware.security.SecurityMiddleware",
"plain.assets.whitenoise.middleware.WhiteNoiseMiddleware",
"plain.sessions.middleware.SessionMiddleware", # <--
"plain.middleware.common.CommonMiddleware",
"plain.csrf.middleware.CsrfViewMiddleware",
Expand Down
1 change: 0 additions & 1 deletion plain-auth/plain/auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ INSTALLED_PACKAGES = [

MIDDLEWARE = [
"plain.middleware.security.SecurityMiddleware",
"plain.assets.whitenoise.middleware.WhiteNoiseMiddleware",
"plain.sessions.middleware.SessionMiddleware", # <--
"plain.middleware.common.CommonMiddleware",
"plain.csrf.middleware.CsrfViewMiddleware",
Expand Down
153 changes: 150 additions & 3 deletions plain-auth/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion plain-auth/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,19 @@ name = "plain.auth"
packages = [
{ include = "plain" },
]
version = "0.1.0"
version = "0.2.0"
description = "User authentication and authorization for Plain."
authors = ["Dave Gaeddert <[email protected]>"]
# readme = "README.md"

[tool.poetry.dependencies]
python = "^3.11"
plain = "<1.0.0"
"plain.models" = "<1.0.0"
"plain.sessions" = "<1.0.0"

[tool.poetry.group.dev.dependencies]
plain = { path = "../plain", develop = true }
"plain.models" = { path = "../plain-models", develop = true }
"plain.sessions" = { path = "../plain-sessions", develop = true }

Expand Down
1 change: 0 additions & 1 deletion plain-cache/plain/cache/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ class Migration(migrations.Migration):
models.BigAutoField(
auto_created=True,
primary_key=True,
serialize=False,
),
),
("key", models.CharField(max_length=255, unique=True)),
Expand Down
Loading

0 comments on commit cef9fee

Please sign in to comment.