Skip to content

Commit

Permalink
Merge branch 'async'
Browse files Browse the repository at this point in the history
  • Loading branch information
thenamesweretakenalready committed Aug 5, 2021
2 parents 1383ebf + fdf76f2 commit eadf183
Show file tree
Hide file tree
Showing 8 changed files with 357 additions and 771 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ jobs:
# Building and testing the project
# Useful when a PR is open, for example
build-and-test:
# Our environment, Python 3.8
# Our environment, Python 3.9
docker:
- image: circleci/python:3.8
- image: circleci/python:3.9

# The steps for our build-and-test
steps:
Expand All @@ -27,7 +27,7 @@ jobs:
- run:
name: Install Dependencies
command: |
poetry install
poetry update && poetry install
# Save's the specified path as a cache. This is the path Poetry uses to install the dependencies
# So if you don't install anything new, this folder won't change and the cache will be effective
Expand All @@ -49,7 +49,7 @@ jobs:

# Same environment
docker:
- image: circleci/python:3.8
- image: circleci/python:3.9
steps:

# Gets the code
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ downloads/
eggs/
.eggs/
lib/
bin/
lib64/
parts/
sdist/
Expand Down Expand Up @@ -84,6 +85,7 @@ ipython_config.py

# pyenv
.python-version
pyvenv.cfg

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
Expand Down
7 changes: 0 additions & 7 deletions mypy.ini

This file was deleted.

Loading

0 comments on commit eadf183

Please sign in to comment.