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

Commit f80277d

Browse files
chore: rename project from timefold-solver to timefold (#84)
1 parent b8f0cb3 commit f80277d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/release-changelog-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ check out [_Timefold Solver Enterprise Edition_](https://timefold.ai/pricing).
1919

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

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

2424
# Additional notes
2525

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
environment:
3030
name: pypi
31-
url: https://pypi.org/p/timefold-solver
31+
url: https://pypi.org/p/timefold
3232
permissions:
3333
contents: write # IMPORTANT: required for action to create release branch
3434
pull-requests: write # IMPORTANT: so release PR can be created

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Timefold Solver for Python
44

5-
[![PyPI](https://img.shields.io/pypi/v/timefold-solver?style=for-the-badge& "PyPI")](https://pypi.org/project/timefold-solver/)
5+
[![PyPI](https://img.shields.io/pypi/v/timefold?style=for-the-badge& "PyPI")](https://pypi.org/project/timefold/)
66
[![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)
77
[![JVM support](https://img.shields.io/badge/Java-17+-brightgreen.svg?style=for-the-badge)](https://sdkman.io)
88
[![Python support](https://img.shields.io/badge/Python-3.10+-brightgreen.svg?style=for-the-badge)](https://www.python.org/downloads)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def find_stub_files(stub_root: str):
120120
timefold_solver_python_version = '999-dev0'
121121

122122
setup(
123-
name='timefold-solver',
123+
name='timefold',
124124
version=timefold_solver_python_version,
125125
license='Apache License Version 2.0',
126126
license_file='LICENSE.txt',

timefold-solver-python-core/src/main/python/config/_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,10 @@ class MoveThreadCount(Enum):
167167

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

175175

176176
Solution_ = TypeVar('Solution_')

0 commit comments

Comments
 (0)