Skip to content
This repository was archived by the owner on Jul 17, 2024. It is now read-only.

chore: rename project from timefold-solver to timefold #84

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release-changelog-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ check out [_Timefold Solver Enterprise Edition_](https://timefold.ai/pricing).

To see Timefold Solver in action, check out [the quickstarts](https://github.com/TimefoldAI/timefold-quickstarts).

Add `timefold-solver=={{projectVersion}}` to your `requirements.txt` or `pip install timefold-solver=={{projectVersion}}` file to get started.
Add `timefold=={{projectVersion}}` to your `requirements.txt` or `pip install timefold=={{projectVersion}}` file to get started.

# Additional notes

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/timefold-solver
url: https://pypi.org/p/timefold
permissions:
contents: write # IMPORTANT: required for action to create release branch
pull-requests: write # IMPORTANT: so release PR can be created
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Timefold Solver for Python

[![PyPI](https://img.shields.io/pypi/v/timefold-solver?style=for-the-badge& "PyPI")](https://pypi.org/project/timefold-solver/)
[![PyPI](https://img.shields.io/pypi/v/timefold?style=for-the-badge& "PyPI")](https://pypi.org/project/timefold/)
[![License](https://img.shields.io/github/license/TimefoldAI/timefold-solver-python?style=for-the-badge&logo=apache)](https://www.apache.org/licenses/LICENSE-2.0)
[![JVM support](https://img.shields.io/badge/Java-17+-brightgreen.svg?style=for-the-badge)](https://sdkman.io)
[![Python support](https://img.shields.io/badge/Python-3.10+-brightgreen.svg?style=for-the-badge)](https://www.python.org/downloads)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def find_stub_files(stub_root: str):
timefold_solver_python_version = '999-dev0'

setup(
name='timefold-solver',
name='timefold',
version=timefold_solver_python_version,
license='Apache License Version 2.0',
license_file='LICENSE.txt',
Expand Down
4 changes: 2 additions & 2 deletions timefold-solver-python-core/src/main/python/config/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,10 @@ class MoveThreadCount(Enum):

class RequiresEnterpriseError(EnvironmentError):
def __init__(self, feature):
super().__init__(f'Feature {feature} requires timefold-solver-enterprise to be installed. '
super().__init__(f'Feature {feature} requires timefold-enterprise to be installed. '
f'See https://docs.timefold.ai/timefold-solver/latest/enterprise-edition/'
f'enterprise-edition#switchToEnterpriseEdition for instructions on how to '
f'install timefold-solver-enterprise.')
f'install timefold-enterprise.')


Solution_ = TypeVar('Solution_')
Expand Down
Loading