-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #480 from pretendWhale/v2.4.0
V2.4.0
- Loading branch information
Showing
23 changed files
with
111 additions
and
47 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 |
---|---|---|
|
@@ -13,6 +13,8 @@ jobs: | |
- 3.8 | ||
- 3.9 | ||
- '3.10' | ||
- 3.11 | ||
- 3.12 | ||
test-dir: | ||
- client | ||
- server | ||
|
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,9 +1,9 @@ | ||
repos: | ||
- repo: https://github.com/psf/black | ||
rev: 22.12.0 | ||
rev: 23.12.1 | ||
hooks: | ||
- id: black | ||
- repo: https://github.com/pycqa/flake8 | ||
rev: 6.0.0 | ||
rev: 6.1.0 | ||
hooks: | ||
- id: flake8 |
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
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,5 +1,10 @@ | ||
flask==2.2.2 | ||
python-dotenv==0.21.0 | ||
rq==1.11.1 | ||
redis==4.3.4 | ||
jsonschema==4.16.0 | ||
flask==2.2.5;python_version<"3.8" | ||
flask==2.3.3;python_version>="3.8" | ||
python-dotenv==0.21.1;python_version<"3.8" | ||
python-dotenv==1.0.0;python_version>="3.8" | ||
rq==1.15.1 | ||
redis==5.0.1 | ||
jsonschema==4.17.3;python_version<"3.8" | ||
jsonschema==4.20.0;python_version>="3.8" | ||
Werkzeug==2.2.3;python_version<"3.8" | ||
Werkzeug==2.3.8;python_version>="3.8" |
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 |
---|---|---|
|
@@ -77,5 +77,5 @@ volumes: | |
|
||
networks: | ||
markus_dev: | ||
external: | ||
name: markus_dev | ||
name: markus_dev | ||
external: true |
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
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,11 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
if ! dpkg -l ghc cabal-install &> /dev/null; then | ||
if ! dpkg -l ghc cabal-install haskell-stack &> /dev/null; then | ||
apt-get -y update | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y -o 'Dpkg::Options::=--force-confdef' -o 'Dpkg::Options::=--force-confold' ghc cabal-install | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y -o 'Dpkg::Options::=--force-confdef' -o 'Dpkg::Options::=--force-confold' ghc cabal-install haskell-stack | ||
fi | ||
|
||
# TODO: install these without cabal so they can be properly isolated/uninstalled | ||
cabal update | ||
ghc-pkg describe tasty-discover &>/dev/null || cabal install tasty-discover --global | ||
ghc-pkg describe tasty-quickcheck &>/dev/null || cabal install tasty-quickcheck --global | ||
stack update |
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
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
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,3 @@ | ||
python-ta==1.4.2;python_version<"3.8" | ||
python-ta==2.6.2; python_version>="3.8" | ||
python-ta==2.7.0; python_version>="3.8" | ||
isort<5;python_version<"3.8" |
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,8 +1,9 @@ | ||
rq==1.11.1 | ||
click==8.1.3 | ||
redis==4.3.4 | ||
pyyaml==6.0 | ||
jsonschema==4.16.0 | ||
requests==2.28.1 | ||
psycopg2-binary==2.9.5 | ||
supervisor==4.2.4 | ||
rq==1.15.1 | ||
click==8.1.7 | ||
redis==5.0.1 | ||
pyyaml==6.0.1 | ||
jsonschema==4.17.3;python_version<"3.8" | ||
jsonschema==4.20.0;python_version>="3.8" | ||
requests==2.31.0 | ||
psycopg2-binary==2.9.9 | ||
supervisor==4.2.5 |