Skip to content

Commit eadf183

Browse files
author
thenamesweretakenalready
committed
Merge branch 'async'
2 parents 1383ebf + fdf76f2 commit eadf183

File tree

8 files changed

+357
-771
lines changed

8 files changed

+357
-771
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
# Building and testing the project
77
# Useful when a PR is open, for example
88
build-and-test:
9-
# Our environment, Python 3.8
9+
# Our environment, Python 3.9
1010
docker:
11-
- image: circleci/python:3.8
11+
- image: circleci/python:3.9
1212

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

5050
# Same environment
5151
docker:
52-
- image: circleci/python:3.8
52+
- image: circleci/python:3.9
5353
steps:
5454

5555
# Gets the code

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ downloads/
1616
eggs/
1717
.eggs/
1818
lib/
19+
bin/
1920
lib64/
2021
parts/
2122
sdist/
@@ -84,6 +85,7 @@ ipython_config.py
8485

8586
# pyenv
8687
.python-version
88+
pyvenv.cfg
8789

8890
# pipenv
8991
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.

mypy.ini

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)