Skip to content

Commit

Permalink
Run CI for python 3.10 (#58)
Browse files Browse the repository at this point in the history
* Add 3.10 to github actions

* add entry in changelog

* Fix indentation in changelog
  • Loading branch information
thomasborgen authored Mar 31, 2022
1 parent ce560c4 commit a815c6e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v2
Expand Down
28 changes: 16 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,35 @@

## Latest Changes

### Internal

* Run CI for python 3.10

## 3.0.0

Remove the callable classes. After we stopped using `returns` they weren't really doing anything. Removing this also removes about half the codebase and makes developing new features easier.

### Breaking

* The Callable class `GetClient` is removed.
* The Callable class `GetBucket` is removed.
* The Callable class `CreateBucket` is removed.
* The Callable class `DeleteBucket` is removed.
* The Callable class `DeleteFile` is removed.
* The Callable class `DownloadFile` is removed.
* The Callable class `ListBuckets` is removed.
* The Callable class `ListFiles` is removed.
* The Callable class `UploadFile` is removed.
* The Callable class `GetClient` is removed.
* The Callable class `GetBucket` is removed.
* The Callable class `CreateBucket` is removed.
* The Callable class `DeleteBucket` is removed.
* The Callable class `DeleteFile` is removed.
* The Callable class `DownloadFile` is removed.
* The Callable class `ListBuckets` is removed.
* The Callable class `ListFiles` is removed.
* The Callable class `UploadFile` is removed.

### Features

* Can now import directly from `storage_bucket`. Before: `from storage_bucket.download_file import download_file` -> `from storage_bucket import download_file`
* Can now import directly from `storage_bucket`. Before: `from storage_bucket.download_file import download_file` -> `from storage_bucket import download_file`


### Docs

* Examples in docs now import functions directly from `storage_bucket`
* Removes anything related to returns from docs (48)[https://github.com/thomasborgen/storage-bucket/issues/48]
* Examples in docs now import functions directly from `storage_bucket`
* Removes anything related to returns from docs (48)[https://github.com/thomasborgen/storage-bucket/issues/48]

## 2.0.0 - Return to life before `returns`

Expand Down

0 comments on commit a815c6e

Please sign in to comment.