Skip to content

Commit

Permalink
Fix placement of pyproject.toml file.
Browse files Browse the repository at this point in the history
The `pyproject.toml` should have been moved to the root project folder instead
of inside `android_env/`. The configuration of `optional-dependencies` was also
wrong, and this change now fixes it.

PiperOrigin-RevId: 527615073
  • Loading branch information
kenjitoyama authored and copybara-github committed Apr 27, 2023
1 parent f173385 commit de22cfc
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions android_env/pyproject.toml → pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "android-env"
version = "1.2.1"
version = "1.2.2"
description = "AndroidEnv environment and library for training agents."
authors = [{name = "DeepMind"}]
license = {file = "LICENSE"}
Expand All @@ -25,12 +25,15 @@ dependencies = [
]

[project.optional-dependencies]
testing = [
"attrs==20.3.0", # temporary pin to fix pytype issue.
"gym",
"pillow",
"pytype",
"pytest-xdist",
]
acme = ["dm-acme"]
gym = ["gym"]
attrs = ["attrs==20.3.0"] # temporary pin to fix pytype issue.
pillow = ["pillow"]
pytype = ["pytype"]
pytest = ["pytest-xdist"]

[project.urls]
repository = "https://github.com/deepmind/android_env"
Expand Down

0 comments on commit de22cfc

Please sign in to comment.