Skip to content

Commit 1187254

Browse files
Rewrite of Pybot (#376)
* Replaces majority of code with rewrite code * Adds in handling of new join testing * Developer script * Adds in daily programmer and event subs to manifest * Changes to daily programmer * Revert "Changes to daily programmer" This reverts commit 548845f. * Changes to daily programmer * New changes * Removes circle CI and dependabot settings
1 parent 17b738a commit 1187254

File tree

145 files changed

+8787
-5297
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+8787
-5297
lines changed

.circleci/config.yml

-102
This file was deleted.

.dockerignore

-1
This file was deleted.

.flake8

-15
This file was deleted.

.github/FUNDING.yml

-3
This file was deleted.

.github/dependabot.yml

-57
This file was deleted.

.gitignore

+4-14
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
.idea
2-
*.env
3-
.pytest_cache
4-
!/docker/example.env
5-
1+
### Python template
62
# Byte-compiled / optimized / DLL files
73
__pycache__/
84
*.py[cod]
@@ -19,6 +15,7 @@ dist/
1915
downloads/
2016
eggs/
2117
.eggs/
18+
lib/
2219
lib64/
2320
parts/
2421
sdist/
@@ -42,7 +39,6 @@ pip-delete-this-directory.txt
4239
# Unit test / coverage reports
4340
htmlcov/
4441
.tox/
45-
.nox/
4642
.coverage
4743
.coverage.*
4844
.cache
@@ -77,10 +73,6 @@ target/
7773
# Jupyter Notebook
7874
.ipynb_checkpoints
7975

80-
# IPython
81-
profile_default/
82-
ipython_config.py
83-
8476
# pyenv
8577
.python-version
8678

@@ -111,8 +103,6 @@ venv.bak/
111103

112104
# mypy
113105
.mypy_cache/
114-
.dmypy.json
115-
dmypy.json
116106

117-
# Pyre type checker
118-
.pyre/
107+
.idea/*
108+
env*

.isort.cfg

-6
This file was deleted.

Pipfile

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
fastapi = "*"
8+
uvicorn = {extras = ["standard"], version = "*"}
9+
slack-bolt = "*"
10+
requests = "*"
11+
slack-sdk = "*"
12+
airtable = "*"
13+
pyairtable = "*"
14+
pydantic = "*"
15+
apscheduler = "*"
16+
dailyprogrammer = "*"
17+
aiohttp = "==3.8.1"
18+
19+
[dev-packages]
20+
pytest = "*"
21+
black = "*"
22+
pytest-vcr = "*"
23+
pyyaml = "*"
24+
25+
[requires]
26+
python_version = "3.10"
27+
28+
[pipenv]
29+
allow_prereleases = true

0 commit comments

Comments
 (0)