Skip to content

Commit

Permalink
Make the PR ready for merging
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudo-rnd-thoughts committed Sep 26, 2024
1 parent fb4cdc6 commit b17f197
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 25 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ on:
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
required: false
default: false
# push:
# paths-ignore:
# - "docs/**"
# pull_request:
# branches:
# - "*"
push:
paths-ignore:
- "docs/**"
pull_request:
branches:
- "*"

jobs:
pre-commit:
Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:

- name: Install ALE wheel
# wildcarding doesn't work for some reason, therefore, update the project version here
run: python -m pip install ale_py-0.10.0-${{ matrix.wheel-name }}.whl
run: python -m pip install ale_py-0.10.1-${{ matrix.wheel-name }}.whl

- name: Install Gymnasium and pytest
run: python -m pip install gymnasium>=1.0.0a2 pytest
Expand Down
27 changes: 11 additions & 16 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,8 @@
name: Push wheels to pypi

on:
push:
pull_request:
branches:
- "*"
# release:
# types: [ published ]
release:
types: [ published ]

jobs:
build-wheels:
Expand Down Expand Up @@ -90,14 +86,12 @@ jobs:
id-token: write

steps:
# create the `ale_py-*.*.*.tar.gz` for source building
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: '3.12'

- run: pip install setuptools

- run: python setup.py sdist

- uses: actions/download-artifact@v4
Expand All @@ -119,12 +113,13 @@ jobs:
with:
name: wheels-macos-12-arm64
path: dist

- run: ls dist/

# - name: Publish to PyPi test
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
# user: __token__
# password: ${{ secrets.PYPI_TOKEN }}
# packages-dir: dist/
# print-hash: true
- name: Publish to PyPi test
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
packages-dir: dist/
print-hash: true
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [0.10.1](https://github.com/Farama-Foundation/Arcade-Learning-Environment/compare/v0.10.0...v0.10.1) - 2024-10-26

Revert change to requirements that `numpy < 2.0` and add support for building from source distribution, `tar.gz` (though not recommended).

## [0.10.0](https://github.com/Farama-Foundation/Arcade-Learning-Environment/compare/v0.9.1...v0.10.0) - 2024-10-23

In v0.10, ALE now has its own dedicated website, https://ale.farama.org/ with Atari's documentation being moved from Gymnasium.
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "arcade-learning-environment",
"version": "0.10.0",
"version": "0.10.1",
"dependencies": [
"zlib"
],
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.0
0.10.1

0 comments on commit b17f197

Please sign in to comment.