Skip to content

Commit

Permalink
[v1.0.2] Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Diapolo10 committed Feb 24, 2023
1 parent 96847ef commit b940ba1
Show file tree
Hide file tree
Showing 12 changed files with 371 additions and 590 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'

- name: Install Poetry
uses: Gr1N/setup-poetry@v8
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/github_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os: [ ubuntu-latest ]
python-version: [
'3.10',
'3.11',
'pypy-3.8',
]
steps:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
name: Release ${{ github.ref }}
name: Release ${{ github.ref_name }}
draft: false
prerelease: ${{ steps.is_prerelease.outputs.value }}
body_path: ./TEMP_CHANGELOG.md
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python 3.9
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.11'

- name: Install Poetry
uses: Gr1N/setup-poetry@v8
Expand Down
23 changes: 0 additions & 23 deletions .github/workflows/pypi_deploy.yml

This file was deleted.

7 changes: 6 additions & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
py38,
py39,
py310,
pypy3
py311,
pypy3,
]
include:
- tox-env: py37
Expand All @@ -31,6 +32,8 @@ jobs:
python-version: '3.9'
- tox-env: py310
python-version: '3.10'
- tox-env: py311
python-version: '3.11'
- tox-env: pypy3
python-version: pypy-3.9

Expand All @@ -39,6 +42,8 @@ jobs:
tox-env: pypy3
- os: macos-latest
tox-env: pypy3
- os: macos-latest
tox-env: py311
env:
TOXENV: ${{ matrix.tox-env }}

Expand Down
28 changes: 21 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,26 +50,40 @@ Lorem Ipsum dolor sit amet.
<!--
_______________________________________________________________________________
## [1.0.1] - 2022-04-12
## [1.0.2] - 2023-02-24
This update adds some additional test cases for corner cases, improves
type hinting, and adds missing docstrings
This update adds a missing `py.typed` file, and updates dependencies.
### Added
- More docstrings
- More test cases
- Documentation is now linked in `README.md`
- `py.typed`
### Changed
- Improved type hinting
- Fixed some wording in `README.md`
- Updated dependencies
- Updated localisation files
-->

_______________________________________________________________________________

## [1.0.2] - 2023-02-24

This update adds a missing `py.typed` file, and updates dependencies.

### Added

- `py.typed`

### Changed

- Fixed some wording in `README.md`
- Updated dependencies
- Updated localisation files

_______________________________________________________________________________

## [1.0.1] - 2022-04-12

This update adds some additional test cases for corner cases, improves
Expand Down
21 changes: 13 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ Python library, and adding unit tests to it. The project uses Pytest.

The main project has no library dependencies, but the actual unit testing
part relies on several packages listed in
[`pyproject.toml`](./pyproject.toml). But in general, you'll need:
[`pyproject.toml`][pyproject.toml]. But in general, you'll need:

- Python 3.6 or newer
- Python 3.7 or newer
- Poetry

The project is automatically tested on the latest versions of Windows,
Expand All @@ -35,23 +35,28 @@ may work, but is not guaranteed.

### Installation

Please see the documentation [here](./docs/installation.md).
Please see the documentation [here][installation].

### Running unit tests

Please see the documentation [here](./docs/running_unit_tests.md).
Please see the documentation [here][running unit tests].

## Version history

The project's changelog can be found [here](./CHANGELOG.md).
The project's changelog can be found [here][changelog].

## License

This project is licensed under the MIT license - see the [`LICENSE`](./LICENSE)-file for details.
This project is licensed under the MIT license - see the [`LICENSE`][license]-file for details.

## Acknowledgements

Inspiration, code snippets, debugging help, etc.

- Code Bullet
- The Arcade library team
- My fellow team members

[pyproject.toml]: ./pyproject.toml
[installation]: ./docs/installation.md
[running unit tests]: ./docs/running_unit_tests.md
[changelog]: ./CHANGELOG.md
[license]: ./LICENSE
Loading

0 comments on commit b940ba1

Please sign in to comment.