This repository was archived by the owner on Oct 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
timefold-solver-python-core/src/main/python/config Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ check out [_Timefold Solver Enterprise Edition_](https://timefold.ai/pricing).
1919
2020To 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ def find_stub_files(stub_root: str):
120120timefold_solver_python_version = '999-dev0'
121121
122122setup (
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' ,
Original file line number Diff line number Diff line change @@ -167,10 +167,10 @@ class MoveThreadCount(Enum):
167167
168168class 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
176176Solution_ = TypeVar ('Solution_' )
You can’t perform that action at this time.
0 commit comments