-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This update introduces the auctions and the redirects module. Because of my college workload, chances are that new releases won't be made as frequently. Summer is coming to a close, so I don't have that much time left. For more info, please check out the changelogs as per usual, and peace. ~ Noelle ❤️
- Loading branch information
Showing
148 changed files
with
5,794 additions
and
2,789 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github: No767 | ||
ko_fi: no767 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,79 @@ | ||
name: Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
|
||
pull_request: | ||
branches: | ||
- dev | ||
|
||
env: | ||
POSTGRES_URI: postgresql://postgres:postgres@localhost:5432/postgres | ||
REDIS_URI: redis://localhost:6379/0 | ||
|
||
|
||
jobs: | ||
Test: | ||
name: Test (${{ matrix.version }}) | ||
runs-on: ubuntu-latest | ||
|
||
services: | ||
redis: | ||
image: redis/redis-stack-server:7.0.6-RC8 | ||
ports: | ||
- 6379:6379 | ||
|
||
postgres: | ||
image: postgres:15 | ||
env: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_DB: postgres | ||
ports: | ||
- 5432:5432 | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: [3.8, 3.9, '3.10', '3.11'] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Codecov Uploader | ||
run: | | ||
curl -Os https://uploader.codecov.io/latest/linux/codecov | ||
chmod +x codecov | ||
./codecov | ||
- name: Set up Python | ||
id: setup-python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.version }} | ||
|
||
- name: Set up Poetry | ||
uses: Gr1N/setup-poetry@v8 | ||
|
||
- name: Install Nox | ||
run: | | ||
pip install --upgrade nox | ||
- name: Run Tests | ||
run: | | ||
RAW_PYTHON_VERSION=${{ matrix.version }} | ||
PYTHON_VERSION=$(echo $RAW_PYTHON_VERSION | sed 's/\.//') | ||
nox --sessions test$PYTHON_VERSION | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
files: ./coverage.xml | ||
name: Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
|
||
pull_request: | ||
branches: | ||
- dev | ||
|
||
env: | ||
POSTGRES_URI: postgresql://postgres:postgres@localhost:5432/postgres | ||
REDIS_URI: redis://localhost:6379/0 | ||
|
||
|
||
jobs: | ||
Test: | ||
name: Test (${{ matrix.version }}) | ||
runs-on: ubuntu-latest | ||
|
||
services: | ||
redis: | ||
image: redis/redis-stack-server:7.2.0-RC3 | ||
ports: | ||
- 6379:6379 | ||
|
||
postgres: | ||
image: postgres:15 | ||
env: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_DB: postgres | ||
ports: | ||
- 5432:5432 | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: [3.8, 3.9, '3.10', '3.11'] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Codecov Uploader | ||
run: | | ||
curl -Os https://uploader.codecov.io/latest/linux/codecov | ||
chmod +x codecov | ||
./codecov | ||
- name: Set up Python | ||
id: setup-python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.version }} | ||
|
||
- name: Set up Poetry | ||
uses: Gr1N/setup-poetry@v8 | ||
|
||
- name: Install Nox | ||
run: | | ||
pip install --upgrade nox | ||
- name: Run Tests | ||
run: | | ||
RAW_PYTHON_VERSION=${{ matrix.version }} | ||
PYTHON_VERSION=$(echo $RAW_PYTHON_VERSION | sed 's/\.//') | ||
nox --sessions test$PYTHON_VERSION | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
files: ./coverage.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
from pkgutil import iter_modules | ||
|
||
EXTENSIONS = [module.name for module in iter_modules(__path__, f"{__package__}.")] | ||
from pkgutil import iter_modules | ||
from typing import Literal, NamedTuple | ||
|
||
|
||
class VersionInfo(NamedTuple): | ||
major: int | ||
minor: int | ||
micro: int | ||
releaselevel: Literal["dev", "alpha", "beta", "final"] | ||
|
||
def __str__(self) -> str: | ||
return f"{self.major}.{self.minor}.{self.micro}-{self.releaselevel}" | ||
|
||
|
||
EXTENSIONS = [module.name for module in iter_modules(__path__, f"{__package__}.")] | ||
VERSION: VersionInfo = VersionInfo(major=0, minor=11, micro=0, releaselevel="final") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.