Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
flaree committed Aug 30, 2024
2 parents 88e2223 + fae40f3 commit b666f04
Show file tree
Hide file tree
Showing 24 changed files with 1,373 additions and 1,119 deletions.
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* text eol=lf

# binary file excludsions
*.png binary
*.tff binary
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: Bug report
about: Create a bug report
title: ''
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Version:**
- Can be found in /about (applicable if self hosting)

**Additional context**
Add any other context about the problem here.
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Feature request
about: Suggest an idea for Ballsdex
title: ''
labels: ''
assignees: ''

---

**Describe the feature you'd like**
A clear and concise description of what you want to happen.

**Additional context**
Add any other context or screenshots about the feature request here.
2 changes: 2 additions & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
- name: Lock dependencies
run: poetry lock --no-update
- name: Install dependencies
run: poetry install --with=dev --no-interaction
- name: Run black
Expand Down
72 changes: 36 additions & 36 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
# Python stuff
*.pyc
__pycache__

# macOS
.DS_Store

# Python binaries
*.egg-info
dist
build

# log files
*.log*

# Virtual environment
venv
.venv
.python-version

# Visual Studio code settings
.vscode

# database
*sqlite3*
*.rdb

# static
static

# cache
.pytest_cache

# settings
config.yml
docker-compose.override.yml
# Python stuff
*.pyc
__pycache__

# macOS
.DS_Store

# Python binaries
*.egg-info
dist
build

# log files
*.log*

# Virtual environment
venv
.venv
.python-version

# Visual Studio code settings
.vscode

# database
*sqlite3*
*.rdb

# static
static

# cache
.pytest_cache

# settings
config.yml
docker-compose.override.yml
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ Export the appropriate environment variables as described in the

### Installing the dependencies

1. Get Python 3.10 and pip
2. Install poetry with `pip install poetry`
3. Run `poetry install`
4. You may run commands inside the virtualenv with `poetry run ...`, or use `poetry shell`
1. Get Python 3.10 and pip.
2. Install poetry with `pip install poetry`.
3. Run `poetry install`.
4. You may run commands inside the virtualenv with `poetry run ...`, or use `poetry shell`.
5. Set up your IDE Python version to the one from Poetry. The path to the virtualenv can
be obtained with `poetry show -v`.

Expand Down
2 changes: 1 addition & 1 deletion ballsdex/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.18.1"
__version__ = "2.19.0"
Loading

0 comments on commit b666f04

Please sign in to comment.